POST api/v1/Receiptsmove
Request Information
URI Parameters
None.
Body Parameters
Receipt| Name | Description | Type | Additional information |
|---|---|---|---|
| code | integer |
None. |
|
| type | integer |
None. |
|
| number | decimal number |
None. |
|
| accid | integer |
None. |
|
| currency | integer |
None. |
|
| id_branch | integer |
None. |
|
| user_id | integer |
None. |
|
| Currency_Converter | decimal number |
None. |
|
| date_in | date |
None. |
|
| note | string |
None. |
|
| Move_Side | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"code": 1,
"type": 2,
"number": 3.1,
"accid": 4,
"currency": 5,
"id_branch": 6,
"user_id": 7,
"Currency_Converter": 8.1,
"date_in": "2025-12-19T15:21:54.581841+03:00",
"note": "sample string 10",
"Move_Side": 11
}
text/xml
Sample:
<Receipt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/creative_api"> <Currency_Converter>8.1</Currency_Converter> <Move_Side>11</Move_Side> <accid>4</accid> <code>1</code> <currency>5</currency> <date_in>2025-12-19T15:21:54.581841+03:00</date_in> <id_branch>6</id_branch> <note>sample string 10</note> <number>3.1</number> <type>2</type> <user_id>7</user_id> </Receipt>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
outdata| Name | Description | Type | Additional information |
|---|---|---|---|
| data |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": null,
"rowcount": 1,
"status": true,
"msg_error": "sample string 3"
}
text/xml
Sample:
<outdata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/creative_api"> <data i:nil="true" /> <msg_error>sample string 3</msg_error> <rowcount>1</rowcount> <status>true</status> </outdata>