POST api/FrontierWeb/Booking/GetBookingEquipmentList
Request Information
URI Parameters
None.
Body Parameters
GetBookingEquipmentListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| DocumentIdNo | integer |
None. |
|
| SortExpression |
This property is not used for anything. It is kept in-place to prevent legacy code from breaking. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"DocumentIdNo": 1,
"SortExpression": "sample string 2"
}
text/html
Sample:
{"DocumentIdNo":1,"SortExpression":"sample string 2"}
Response Information
Resource Description
GenericGetChildListFromParentResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| RetrievedList | Collection of Object |
None. |
|
| Count | integer |
None. |
|
| IsSuccessful |
Indicates if the transaction was successful or not. |
boolean |
None. |
| ReturnedMessages |
Contains a list of Informational, Warning, and/or Error messages regarding the outcome of the transaction. |
Collection of ReturnedMessage |
None. |
Response Formats
application/json, text/json
Sample:
{
"RetrievedList": [
{},
{}
],
"Count": 1,
"IsSuccessful": true,
"ReturnedMessages": null
}
text/html
Sample:
{"RetrievedList":[{},{}],"Count":1,"IsSuccessful":true,"ReturnedMessages":null}