| GET | /GetCompanyInvoiceDet |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| InvoiceId | query | int? | No | |
| CompanyId | query | int? | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ResponseStatus | form | ResponseStatus | No | |
| Result | form | List<tfInvoiceDet> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| FuelId | form | int | No | |
| Fuelname | form | string | No | |
| Fuelname_en | form | string | No | |
| Unit | form | string | No | |
| Price | form | decimal | No | |
| Discount | form | decimal | No | |
| Code | form | string | No | |
| InvoicedetId | form | int? | No | |
| Scount | form | decimal? | No | |
| InvoiceId | form | int? | 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 /GetCompanyInvoiceDet 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:
[
{
FuelId: 0,
Fuelname: String,
Fuelname_en: String,
Unit: String,
Price: 0,
Discount: 0,
Code: String,
InvoicedetId: 0,
Scount: 0,
InvoiceId: 0
}
]
}