| GET | /invoices | ||
|---|---|---|---|
| GET | /invoices/{InvoiceId} |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| InvoiceId | path | long? | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Skip | form | int? | No | |
| Take | form | int? | No | |
| OrderBy | form | string | No | |
| OrderByDesc | form | string | No | |
| Include | form | string | No | |
| Fields | form | string | No | |
| Meta | form | Dictionary<string, string> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| InvoiceId | form | long | No | |
| CustomerId | form | long | No | |
| InvoiceDate | form | DateTime | No | |
| Total | form | decimal | No | |
| BillingAddress | form | string | No | |
| BillingCity | form | string | No | |
| BillingState | form | string | No | |
| BillingCountry | form | string | No | |
| BillingPostalCode | form | string | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| Offset | form | int | No | |
| Total | form | int | No | |
| Results | form | List<Albums> | No | |
| Meta | form | Dictionary<string, string> | No | |
| ResponseStatus | form | ResponseStatus | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| AlbumId | form | long | No | |
| Title | form | string | Yes | |
| ArtistId | form | long | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /invoices HTTP/1.1 Host: chinook.netcore.io Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"offset":0,"total":0,"results":[{"invoiceId":0,"customerId":0,"invoiceDate":"0001-01-01T00:00:00","total":0,"billingAddress":"String","billingCity":"String","billingState":"String","billingCountry":"String","billingPostalCode":"String"}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}