This API allows clients to export question responses from Check-ins in Perform & Engage 365.
Throughout the API an 'api_id' for employees is used. This can be specified by the client when creating a new employee/user via the API, if one is not specified during creation or a user is created via a different method (i.e. the user interface) then the API ID can be obtained by querying the API.
Users can be created and managed using the Directory API: User endpoints.
GET /checkin/question/{ api_id }/responses
List all responses to this questions.
Response
Returns an object including a list of responses. If the question related to a multiple choice question then 'selected_choice' will be populated, otherwise the response value will be included in the 'response_text' field.
[
{
'api_id': string,
'related_question_id': string,
'response_text': string,
'response_comment': string,
'selected_choice': string,
'related_person_id': string,
'submitted_date': date
'deleted': boolean
}.....
]