POST api/Request/GetRequestStatus
Returns a JSON converted CurrentStatusResponse object with the details of the supplied Request Id value.
Request Information
URI Parameters
None.
Body Parameters
EncryptedRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientGuid | globally unique identifier |
None. |
|
| EncryptedObject | string |
None. |
|
| RequestType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClientGuid": "212e4119-2284-4df1-a228-de1fc06f3b71",
"EncryptedObject": "sample string 2",
"RequestType": "sample string 3"
}
application/xml, text/xml
Sample:
<EncryptedRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/frontline.ramp.objects"> <ClientGuid>212e4119-2284-4df1-a228-de1fc06f3b71</ClientGuid> <EncryptedObject>sample string 2</EncryptedObject> <RequestType>sample string 3</RequestType> </EncryptedRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>