POST api/Eula

Documentation for 'Post'.

Request Information

Parameters

NameDescriptionAdditional information
request
Documentation for 'request'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "regKey": "sample string 1",
  "userId": 2,
  "username": "sample string 3",
  "applicationTypeId": 4,
  "utopiaInstanceID": "sample string 5",
  "partnerIds": [
    1,
    2,
    3
  ]
}

application/xml, text/xml

Sample:
<CreateEulaRequest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <RegKey>sample string 1</RegKey>
  <UserId>2</UserId>
  <UserName>sample string 3</UserName>
  <ApplicationTypeId>4</ApplicationTypeId>
  <UtopiaInstanceId>sample string 5</UtopiaInstanceId>
  <PartnerIds>
    <int>1</int>
    <int>2</int>
    <int>3</int>
  </PartnerIds>
</CreateEulaRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int>1</int>