GET v1/answerSelectSets/{id}

Retrieves a AnswerSelectSet by their id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Unique Identifier of the AnswerSelectSet requested.

string

Required

Body Parameters

None.

Response Information

Resource Description

The AnswerSelectSet, if it exists. Otherwise a 404 error.

AnswerSelectSet
NameDescriptionTypeAdditional information
Id

string

None.

Response Codes

  • 200 OK: Requested AnswerSelectSet successfully returned.
  • 401 Unauthorized:
  • 404 NotFound: Requested AnswerSelectSet does not exist.
  • 500 InternalServerError:

Response Formats

application/json, text/json

Sample:
{
  "Id": "sample string 1"
}

text/html

Sample:
{"Id":"sample string 1"}

application/xml, text/xml

Sample:
<AnswerSelectSet xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ITAGroup.Questionnaire.Api.Contracts.v1.Models">
  <Id>sample string 1</Id>
</AnswerSelectSet>