| GET | /GETCntDetailsByCompany |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| company_id | query | int | No | |
| ddate | query | DateTime | No | |
| novat | query | bool? | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ResponseStatus | form | ResponseStatus | No | |
| Result | form | List<IFCntDetailsByCompany> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| company_id | form | int | No | |
| cntID | form | int | No | |
| CntName | form | string | No | |
| cntVg | form | decimal? | No | |
| cntVg_used | form | decimal? | No | |
| cntDiskG | form | decimal? | No | |
| cntDiskP | form | decimal? | No | |
| fuel_id | form | int? | No | |
| detCount | form | decimal? | No | |
| detCount_used | form | decimal? | No | |
| detVg | form | decimal? | No | |
| detVg_used | form | decimal? | No | |
| detPrice | form | decimal? | No | |
| detDiskP | form | decimal? | No | |
| detDiskG | form | decimal? | No | |
| fuelname | form | string | No | |
| unit | form | string | No | |
| price | form | decimal? | No | |
| code | 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 /GETCntDetailsByCompany HTTP/1.1 Host: axfuel.apex.ge 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:
[
{
company_id: 0,
cntID: 0,
CntName: String,
cntVg: 0,
cntVg_used: 0,
cntDiskG: 0,
cntDiskP: 0,
fuel_id: 0,
detCount: 0,
detCount_used: 0,
detVg: 0,
detVg_used: 0,
detPrice: 0,
detDiskP: 0,
detDiskG: 0,
fuelname: String,
unit: String,
price: 0,
code: String
}
]
}