Skip to content
richardthombs edited this page Dec 8, 2014 · 33 revisions

The Calls API provides access to TeamHaven's Call Management functionality. To access the answers from completed calls, use the Answers API.

Get Call

GET /api/calls/:id[?schema=true]

Retrieves the Call with the specified Call ID. If schema=true, then the Call's Attribute Schema is included in the response.

Get Call's Questionnaire (Including structure)

GET /api/calls/:id/questionnaire

Retrieves the Call's questionnaire. This questionnaire will be customised for the call - any items known not to be present will not appear.

Get Call's Questionnaire (Excluding structure)

GET /api/calls/:id/questionnaire/manifest

Retrieves the Call's questionnaire in manifest format. This format does not contain any layout information and instead just presents a list of all the Questions and Items.

Note: This API will be replaced by GET /api/calls/:id/questionnaire using a custom media type in a future version of the API.

Clone this wiki locally