PUT api/Content/v2/AddRequest

Request Information

URI Parameters

None.

Body Parameters

APIRequest
NameDescriptionTypeAdditional information
RequestType

integer

None.

Description

string

None.

CustomerId

integer

None.

UniqueId

globally unique identifier

None.

FirstName

string

None.

LastName

string

None.

Email

string

None.

UserUniqueId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "RequestType": 1,
  "Description": "sample string 2",
  "CustomerId": 3,
  "UniqueId": "0e0bbdc6-b2ef-4132-b5d3-cd54a622f46e",
  "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>0e0bbdc6-b2ef-4132-b5d3-cd54a622f46e</UniqueId>
  <UserUniqueId>8</UserUniqueId>
</APIRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>