PUT api/content/v4/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": "098ab1c6-eb82-4d16-a097-0e9270019e4d",
"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>098ab1c6-eb82-4d16-a097-0e9270019e4d</UniqueId> <UserUniqueId>8</UserUniqueId> </APIRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
APICommonWrapperOfBoolean| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | HttpStatusCode |
None. |
|
| Message | string |
None. |
|
| Data | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 100,
"Message": "sample string 1",
"Data": true
}
application/xml, text/xml
Sample:
<APICommonWrapperOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Tsunami.Model"> <Data>true</Data> <Message>sample string 1</Message> <Status>Continue</Status> </APICommonWrapperOfboolean>