| POST | /Accounting/PayedPayRollDet |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| PayedPayRollDets | body | List<PayedPayrollDet> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | form | int | No | |
| PayId | form | int | No | |
| RollDId | form | int | No | |
| Amount | form | double | No | |
| TaxAmount | form | double | No | |
| OtherWithholdAmount | form | double | No | |
| PayType | form | int | No | |
| BankAcc | form | string | No | |
| DocId | form | string | No | |
| PayAcc | form | string | No | |
| PensionPersonalAmount | form | double | No | |
| PensionCompanyAmount | form | double | No | |
| CompanyInsuranceAmount | form | double? | No | |
| CompanyInsuranceTaxAmount | form | double? | No | |
| CompanyInsuranceCompPensionAmount | form | double? | No | |
| CompanyInsurancePersPensionAmount | form | double? | No | |
| PersonalInsuranceAmount | form | double? | No | |
| PersonalInsuranceTaxAmount | form | double? | No | |
| PersonalInsuranceCompPensionAmount | form | double? | No | |
| PersonalInsurancePersPensionAmount | form | double? | No | |
| CompanyInsuranceDocsId | form | string | No | |
| PersonalInsuranceDocsId | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ResponseStatus | form | ResponseStatus | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Accounting/PayedPayRollDet HTTP/1.1
Host: 10.10.0.107
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
PayedPayRollDets:
[
{
Id: 0,
PayId: 0,
RollDId: 0,
Amount: 0,
TaxAmount: 0,
OtherWithholdAmount: 0,
PayType: 0,
BankAcc: String,
DocId: String,
PayAcc: String,
PensionPersonalAmount: 0,
PensionCompanyAmount: 0,
CompanyInsuranceAmount: 0,
CompanyInsuranceTaxAmount: 0,
CompanyInsuranceCompPensionAmount: 0,
CompanyInsurancePersPensionAmount: 0,
PersonalInsuranceAmount: 0,
PersonalInsuranceTaxAmount: 0,
PersonalInsuranceCompPensionAmount: 0,
PersonalInsurancePersPensionAmount: 0,
CompanyInsuranceDocsId: String,
PersonalInsuranceDocsId: String
}
]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}