Skip to content

Latest commit

 

History

History
110 lines (100 loc) · 3.78 KB

File metadata and controls

110 lines (100 loc) · 3.78 KB

Question reminders

Endpoints:

Get question reminders

  • GET /my/question_reminders.json will return a paginated list of pending check-in reminders for the authenticated user.

Each reminder includes the question it belongs to, along with the question's project (bucket).

Example JSON Response
[
  {
    "reminder_id": 1004522439,
    "remind_at": "2026-05-29T14:00:00.000Z",
    "group_on": "2026-05-29",
    "question": {
      "id": 1069479853,
      "status": "active",
      "visible_to_clients": false,
      "created_at": "2026-04-15T01:38:00.000Z",
      "updated_at": "2026-05-28T17:23:29.579Z",
      "title": "What did you work on today?",
      "inherits_status": true,
      "type": "Question",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958505/questions/1069479853.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/questions/1069479853",
      "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTg1Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--7564a2d1da596c874f0d6dba550c70472e64e932.json",
      "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069479853/subscription.json",
      "parent": {
        "id": 1069479839,
        "title": "Automatic Check-ins",
        "type": "Questionnaire",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958505/questionnaires/1069479839.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/questionnaires/1069479839"
      },
      "bucket": {
        "id": 2085958505,
        "name": "The Leto Laptop",
        "type": "Project"
      },
      "creator": {
        "id": 1049715913,
        "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--e627c45e6b34e08862da23906862412620e4d5d9",
        "name": "Victor Cooper",
        "personable_type": "User",
        "title": "Chief Strategist",
        "tagline": "Don't let your dreams be dreams",
        "location": "Chicago, IL",
        "created_at": "2026-05-28T17:22:22.069Z",
        "updated_at": "2026-07-21T01:06:02.483Z",
        "email_address": "victor@honchodesign.com",
        "bio": "Don't let your dreams be dreams",
        "admin": true,
        "owner": true,
        "client": false,
        "employee": true,
        "time_zone": "America/Chicago",
        "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBMlkkT4=--5fe7b70fbee7a7f0e2e1e19df7579e5d880c753d/avatar",
        "company": {
          "id": 1033447817,
          "name": "Honcho Design"
        },
        "can_ping": true,
        "can_manage_projects": true,
        "can_manage_people": true,
        "can_access_timesheet": true,
        "can_access_hill_charts": true
      },
      "paused": false,
      "schedule": {
        "frequency": "every_day",
        "days": [
          1,
          2,
          3,
          4,
          5
        ],
        "hour": 9,
        "minute": 0,
        "week_instance": null,
        "week_interval": null,
        "month_interval": null,
        "start_date": "2026-05-29",
        "duration": null,
        "end_date": null
      },
      "answers_count": 32,
      "answers_url": "https://3.basecampapi.com/195539477/questions/1069479853/answers.json"
    }
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/my/question_reminders.json