GET v1/forms/content/{id}/choices)

Use this method to get all the choices associated to a form element.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Form element unique identifier.

string

Required

Body Parameters

None.

Response Information

Resource Description

Returns a collection of choices associated with a form element.

Collection of FormElementChoice
NameDescriptionTypeAdditional information
id

Choice unique identifier.

string

None.

name

Choice display label/text.

string

None.

internalName

Choice internal name (Used in code by some customized clients)

string

None.

order

Display order.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "sample string 1",
    "name": "sample string 3",
    "internalName": "sample string 4",
    "order": 1
  },
  {
    "id": "sample string 1",
    "name": "sample string 3",
    "internalName": "sample string 4",
    "order": 1
  }
]