PUT api/Content/v3/AddRequest
Request Information
URI Parameters
None.
Body Parameters
APIRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| RequestType | integer |
None. |
|
| Description | string |
None. |
|
| CustomerId | integer |
None. |
|
| UniqueId | globally unique identifier |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| string |
None. |
||
| UserUniqueId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"RequestType": 1,
"Description": "sample string 2",
"CustomerId": 3,
"UniqueId": "ddf7eb8b-87bf-4711-99b6-b2d39a843e10",
"FirstName": "sample string 5",
"LastName": "sample string 6",
"Email": "sample string 7",
"UserUniqueId": 8
}
application/xml, text/xml
Sample:
<APIRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <CustomerId>3</CustomerId> <Description>sample string 2</Description> <Email>sample string 7</Email> <FirstName>sample string 5</FirstName> <LastName>sample string 6</LastName> <RequestType>1</RequestType> <UniqueId>ddf7eb8b-87bf-4711-99b6-b2d39a843e10</UniqueId> <UserUniqueId>8</UserUniqueId> </APIRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>