POST TaxPay/PaymentTaxes_InsertWithTrans
Request Information
URI Parameters
None.
Body Parameters
PaymentTaxes| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchNo | integer |
None. |
|
| PayForDate | date |
None. |
|
| Amount | decimal number |
None. |
|
| Notes | string |
None. |
|
| currency | integer |
None. |
|
| CompanyId | integer |
None. |
|
| UserID | integer |
None. |
|
| IsCompanyCenterialized | integer |
None. |
|
| AccountId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"BranchNo": 1,
"PayForDate": "2025-10-29T05:57:59.9157014+03:00",
"Amount": 3.0,
"Notes": "sample string 4",
"currency": 5,
"CompanyId": 6,
"UserID": 7,
"IsCompanyCenterialized": 8,
"AccountId": 9
}
application/xml, text/xml
Sample:
<PaymentTaxes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POCO"> <AccountId>9</AccountId> <Amount>3</Amount> <BranchNo>1</BranchNo> <CompanyId>6</CompanyId> <IsCompanyCenterialized>8</IsCompanyCenterialized> <Notes>sample string 4</Notes> <PayForDate>2025-10-29T05:57:59.9157014+03:00</PayForDate> <UserID>7</UserID> <currency>5</currency> </PaymentTaxes>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Response| Name | Description | Type | Additional information |
|---|---|---|---|
| ErrorCode | integer |
None. |
|
| ErrorMessage | string |
None. |
|
| IsScusses | boolean |
None. |
|
| ResponseDetails | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"ErrorCode": 1,
"ErrorMessage": "sample string 2",
"IsScusses": true,
"ResponseDetails": {}
}
application/xml, text/xml
Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Accounting.API.Models"> <ErrorCode>1</ErrorCode> <ErrorMessage>sample string 2</ErrorMessage> <IsScusses>true</IsScusses> <ResponseDetails /> </Response>