| GET | /Crm/Orders/DetServices | ||
|---|---|---|---|
| GET | /Crm/Orders/DetServices/{Id} |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | path | int | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ResponseStatus | form | ResponseStatus | No | |
| Result | form | List<CrmOrderService> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Id | form | int | No | |
| Service | form | Service | No | |
| Discount | form | decimal | No | |
| Price | form | decimal | No | |
| SCount | form | decimal | No | |
| VatType | form | byte | No | |
| Amount | form | decimal | No | |
| DocId | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ServiceID | form | string | No | |
| Code | form | string | No | |
| Name | form | string | No | |
| NameEn | form | string | No | |
| Price | form | decimal | No | |
| PriceU | form | decimal | No | |
| Vat | form | decimal | No | |
| Note | form | string | No | |
| LDefault | form | bool? | No | |
| Spend | form | bool | No | |
| NameN | 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/DetServices 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
}
},
Result:
[
{
Id: 0,
Service:
{
ServiceID: String,
Code: String,
Name: String,
NameEn: String,
Price: 0,
PriceU: 0,
Vat: 0,
Note: String,
LDefault: False,
Spend: False,
NameN: String
},
Discount: 0,
Price: 0,
SCount: 0,
VatType: 0,
Amount: 0,
DocId: String
}
]
}