Dive into the intricacies of your team's check-in responses with the GET /checkins/{checkin-uuid}/responses/
endpoint. This endpoint unfolds a wealth of information, providing a comprehensive JSON object containing all responses for a specific check-in's UUID.
Understanding the Endpoint:
-
Path:
/checkins/{checkin-uuid}/responses/
- Method: GET
Query String Parameters:
- date_start (optional): YYYY-MM-DD format to set the start date of the query; the current date is the default value.
- date_end (optional): YYYY-MM-DD format to set the end date of the query; the current date is the default value.
- limit (optional): Sets the maximum limit of responses per page.
- offset (optional): Sets the cursor position for the beginning of results.
Sample Response:
{
"count":1,
"next":null,
"previous":null,
"results":[
{
"uuid":"4e322341-1262-42fa3-942a-0341d90883f6",
"user":
{
"uuid":"b1b292b3-29b2-4235-8103-321ed749db8d",
"full_name":"Team standups",
"image":"https://avatars.slack-edge.com/5_192.jpg",
"occupation":"Teammate"
},
"is_anonymous":false,
"responses":
[
{
"question":
"Your previous day plan ({previous_response_date}):\n{previous_response_#2}\n\nWhat did you complete in your previous workday?",
"question_short":"Previous work day progress",
"question_type":"text",
"response":"Example response 1.",
"is_blocker":false
},
{
"question":"What are you planning to work on today?",
"question_short":"Plans for today",
"question_type":"text",
"response":"Example response 2.",
"is_blocker":false
},
{
"question":"Great. Do you have any blockers? If so, just tell me. Otherwise please say: no.",
"question_short":"Any blockers?",
"question_type":"text",
"response":"Example response 3.",
"is_blocker":true
}
],
"response_completed":true,
"has_issue":true,
"created_at":"2022-01-25T21:44:07.337796Z",
"updated_at":"2022-01-25T21:44:07.669107Z"
}
]
}
Comments
0 comments
Article is closed for comments.