POST RequestTypes/UpdateRequestTypeTerms

Updates terms associated with a request type.

Request Information

URI Parameters

None.

Body Parameters

Update information defining the request type to update, and the terms that should be associated with the request type.

UpdateRequestTypeTermsDTO
NameDescriptionTypeAdditional information
RequestTypeID

Gets or sets the ID of the RequestType to update the terms for.

globally unique identifier

None.

Terms

Gets or sets the collection of term IDs to be associated with the RequestType.

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "RequestTypeID": "d9d206ce-82e5-475c-b86a-aaf4deb8ca40",
      "Terms": [
        "71703cf8-67fc-4ed5-a8e1-bf73a0878529",
        "d4b76bdc-625f-422b-9c0a-73642de3248a"
      ]
    }
  ]
}

text/javascript

Sample:
{"results":[{"RequestTypeID":"d9d206ce-82e5-475c-b86a-aaf4deb8ca40","Terms":["71703cf8-67fc-4ed5-a8e1-bf73a0878529","d4b76bdc-625f-422b-9c0a-73642de3248a"]}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<UpdateRequestTypeTermsDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <RequestTypeID>d9d206ce-82e5-475c-b86a-aaf4deb8ca40</RequestTypeID>
  <Terms xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>71703cf8-67fc-4ed5-a8e1-bf73a0878529</d2p1:guid>
    <d2p1:guid>d4b76bdc-625f-422b-9c0a-73642de3248a</d2p1:guid>
  </Terms>
</UpdateRequestTypeTermsDTO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Http Accepted or Bad Request

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.