POST api/Pyramid/LoadStatementOrderDetailsById
Request Information
URI Parameters
None.
Body Parameters
UserOrderStatementDetailsViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| orderstatementmasterid | integer |
None. |
|
| orderstatementinstruction | string |
None. |
|
| statementtext | string |
None. |
|
| userorderstatementdetailsid | integer |
None. |
|
| logininfoid | integer |
None. |
|
| coursemasterid | integer |
None. |
|
| coursesessiondetailsid | integer |
None. |
|
| orderstatementdetailsid | integer |
None. |
|
| orderstatementanswerid | integer |
None. |
|
| colorcode | string |
None. |
|
| orderby | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"orderstatementmasterid": 1,
"orderstatementinstruction": "sample string 2",
"statementtext": "sample string 3",
"userorderstatementdetailsid": 4,
"logininfoid": 5,
"coursemasterid": 6,
"coursesessiondetailsid": 7,
"orderstatementdetailsid": 8,
"orderstatementanswerid": 9,
"colorcode": "sample string 10",
"orderby": 11
}
application/xml, text/xml
Sample:
<UserOrderStatementDetailsViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfhatch.Models"> <colorcode>sample string 10</colorcode> <coursemasterid>6</coursemasterid> <coursesessiondetailsid>7</coursesessiondetailsid> <logininfoid>5</logininfoid> <orderby>11</orderby> <orderstatementanswerid>9</orderstatementanswerid> <orderstatementdetailsid>8</orderstatementdetailsid> <orderstatementinstruction>sample string 2</orderstatementinstruction> <orderstatementmasterid>1</orderstatementmasterid> <statementtext>sample string 3</statementtext> <userorderstatementdetailsid>4</userorderstatementdetailsid> </UserOrderStatementDetailsViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResultViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| message | string |
None. |
|
| data | Object |
None. |
|
| errorCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"data": {},
"errorCode": 4
}
application/xml, text/xml
Sample:
<HttpResultViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/selfhatch.Models"> <data /> <errorCode>4</errorCode> <message>sample string 2</message> <status>true</status> </HttpResultViewModel>