This API allows clients to export questions 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/
List all available questions for this organisation
Response
Returns an object including a list of check-in questions.
[
{
'api_id': string,
'question_text': string,
'question_type': string,
'is_anonymous': boolean,
'is_recognition_field': boolean,
'allow_comment': boolean
'is_required': boolean,
'is_manager_facing': boolean,
'deleted': boolean
}.....
]