| GET | /Crm/Orders/CheckVoucher |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| CardId | query | string | No | |
| CodeWord | query | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ResponseStatus | form | ResponseStatus | No | |
| Voucher | form | Voucher | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| CardId | form | string | No | |
| CodeWord | form | string | No | |
| Vg | form | decimal | No | |
| Date1 | form | DateTime? | No | |
| Date2 | form | DateTime? | No | |
| Date3 | form | DateTime? | No | |
| Flag | form | byte? | No | |
| DocsId | 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.
GET /Crm/Orders/CheckVoucher HTTP/1.1 Host: 10.10.0.107 Accept: text/jsv
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
}
},
Voucher:
{
CardId: String,
CodeWord: String,
Vg: 0,
Date1: 0001-01-01,
Date2: 0001-01-01,
Date3: 0001-01-01,
Flag: 0,
DocsId: String
}
}