POST API/Document/GetExpenseInvoice
Request Information
URI Parameters
None.
Body Parameters
GuidRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| value | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"value": "a7ede2af-9d77-45f7-852f-6307018a6b01"
}
application/xml, text/xml
Sample:
<GuidRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CarPark.Models.Interaction"> <value>a7ede2af-9d77-45f7-852f-6307018a6b01</value> </GuidRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ByteResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| message | string |
None. |
|
| result | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"message": "sample string 2",
"result": "QEA="
}
application/xml, text/xml
Sample:
<ByteResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CarPark.Models.Interaction"> <message>sample string 2</message> <result>QEA=</result> <success>true</success> </ByteResponse>