| GET | /RideShare/Completed |
|---|
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| NbrRecords | form | int | No | |
| Records | form | List<ServiceOrder> | No |
| Name | Parameter | Data Type | Required | Description |
|---|---|---|---|---|
| ClaimantName | form | string | No | |
| FirstName | form | string | No | |
| LastName | form | string | No | |
| Cell | form | string | No | |
| ServiceDate | form | string | No | |
| Status | form | string | No | |
| Origin | form | string | No | |
| Destination | form | string | No | |
| ServiceId | form | int | No | |
| RecordId | form | int | No | |
| LegId | form | int | No | |
| RecordStatus | form | int | No | |
| form | string | No | ||
| Tag | form | string | No | |
| Redeemable | form | string | No | |
| ClaimantId | form | string | No | |
| RideStatus | form | string | No | |
| OrderId | form | int | No | |
| UberOrigin | form | string | No | |
| UberDestination | 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 /RideShare/Completed HTTP/1.1 Host: set-api-service-prod.azurewebsites.net Accept: text/jsv
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
NbrRecords: 0,
Records:
[
{
ClaimantName: String,
FirstName: String,
LastName: String,
Cell: String,
ServiceDate: String,
Status: String,
Origin: String,
Destination: String,
ServiceId: 0,
RecordId: 0,
LegId: 0,
RecordStatus: 0,
Email: String,
Tag: String,
Redeemable: String,
ClaimantId: String,
RideStatus: String,
OrderId: 0,
UberOrigin: String,
UberDestination: String
}
]
}