POST api/Request/QueueRequest
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": "4dede22d-57c0-4f39-85ab-20f7556d5495",
"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>4dede22d-57c0-4f39-85ab-20f7556d5495</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>