get_question_answers
Retrieve answers to daily check-in questions using project and question IDs. Supports paginated responses for efficient data management on Basecamp projects.
Instructions
Get answers on daily check-in question
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number for paginated response | |
project_id | Yes | The project ID | |
question_id | Yes | The question ID |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"description": "Page number for paginated response",
"type": "number"
},
"project_id": {
"description": "The project ID",
"type": "string"
},
"question_id": {
"description": "The question ID",
"type": "string"
}
},
"required": [
"project_id",
"question_id"
],
"type": "object"
}