Getting the Input Controls of a Document

Usage

Lists all the input controls of a document.

Request

GET /documents/<documentID>/inputcontrols

Response

Response type: application/xml or application/json

Response body: the list of input control identifiers and names.

Example

XML

GET /documents/6671/inputcontrols

Response:

<inputcontrols>
    <inputcontrol>
        <id>D.IF0</id>
        <name>Country</name>
    </inputcontrol>
</inputcontrols>

Example

JSON

GET /documents/5152/inputcontrols

Response:

{"inputcontrols":
    {"inputcontrol":
        {"id":"D.IF0",
         "name":"my checkbox_1"}
    }
}