POST, GET | /MovementGetList |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
UserName | body | string | Yes | |
UpdateDate | body | string | No | |
ExcludeDateFromRange | body | bool | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Documents | form | List<MovementDocument> | No | |
ResponseStatus | form | ResponseStatus | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | string | No | |
Status | form | string | No | |
Sender | form | string | No | |
SenderName | form | string | No | |
Receiver | form | string | No | |
ReceiverName | form | string | No | |
CreateDateUtc | form | DateTime | No | |
LastUpdateDateUtc | form | DateTime | No | |
Items | form | List<DocumentItem> | No | |
Comment | form | string | No | |
ApplicationVersion | form | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | string | No | |
Uid | form | string | No | |
Name | form | string | No | |
Quantity | form | double | No | |
Quality | form | DocumentItemQuality | No | |
Unit | form | DocumentItemUnit | No | |
Characteristic | form | DocumentItemCharacteristic | No | |
Series | form | DocumentItemSeries | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Uid | form | string | No | |
Name | form | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Uid | form | string | No | |
Name | form | string | No | |
Coefficients | form | double | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Uid | form | string | No | |
Name | form | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Uid | form | string | No | |
Name | form | string | No | |
SerialNumber | form | string | 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 /MovementGetList HTTP/1.1
Host: s10.tdfkm.ru
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
userName: String,
updateDate: String,
excludeDateFromRange: False
}
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { documents: [ { id: String, status: String, sender: String, senderName: String, receiver: String, receiverName: String, createDateUtc: 0001-01-01, lastUpdateDateUtc: 0001-01-01, items: [ { id: String, uid: String, name: String, quantity: 0, quality: { uid: String, name: String }, unit: { uid: String, name: String, coefficients: 0 }, characteristic: { uid: String, name: String }, series: { uid: String, name: String, serialNumber: String } } ], comment: String, applicationVersion: String } ], responseStatus: { errorCode: String, message: String, stackTrace: String, errors: [ { errorCode: String, fieldName: String, message: String, meta: { String: String } } ], meta: { String: String } } }