Everything

July 30, 2026 · View on GitHub

Available since Basecamp 5: cross-project flat endpoints that aggregate recordings across every project the authenticated user can access. Use these for "show me all my open to-dos" or "every recent message I can see" style views without enumerating projects.

Most collections are addressable at their root path: /messages.json, /comments.json, /checkins.json, /forwards.json, and /files.json each return a recency-ordered, paginated JSON collection directly. The to-do and card collections are the exceptions — there is no /todos.json, /cards.json, or /tasks.json collection API; use the filtered sub-routes below (/todos/open.json, /cards/overdue.json, …). In the web app, the combined /tasks report is where to-dos and cards are browsed.

The web app also serves /<resource>/recent.json Turbo-frame feeds for these collections, but those are internal: the root collection is the documented API contract. Don't depend on the /recent paths.

Endpoints:

Filtering to-dos and cards

Every to-do and card endpoint below accepts optional query parameters that narrow the results:

  • assignee_ids[] — one or more person IDs. Returns only tasks assigned to at least one of the requested people. Matching considers the task's own assignees; assignees on a task's nested steps aren't considered. If none of the requested IDs resolve to people you know, the result is empty.
  • due — one of with, without, or overdue. Returns only tasks that have a due date, have none, or are past due. Unrecognized values are ignored.

For example, GET /todos/open.json?assignee_ids[]=1049715914&due=overdue returns open, past-due to-dos assigned to that person.

Bucket-grouped to-do and card lists

These endpoints return a paginated array of buckets. Each entry groups the matching recordings — to-dos and their steps, or cards and their steps — under their parent project.

Grouping mirrors the in-app report presentation:

  • Tasks under tools that are hidden from the project's dock are excluded.
  • Tasks are ordered by their in-app position: to-do lists and card table columns appear in project order (not alphabetically), with on-hold cards following their column.
  • A bucket entry can appear with an empty todos/cards array — for example, when a project's only matching tasks live under hidden tools. Pagination counts buckets, so empty entries still count toward X-Total-Count.

Get to-dos by filter

  • GET /todos/open.json — to-dos that are active and incomplete.
  • GET /todos/completed.json — to-dos that have been completed.
  • GET /todos/unassigned.json — open to-dos with no assignees.
  • GET /todos/no_due_date.json — open to-dos that have no due date.

These endpoints are preserved as the canonical API paths; the standalone all-to-dos web page was removed — the BC5 web app shows these tasks in the combined /tasks report.

Each response is an array of buckets with their matching to-do recordings:

Example JSON Response
[
  {
    "bucket": {
      "id": 2085958500,
      "name": "Annie's Corner",
      "type": "Project"
    },
    "todos": [
      {
        "id": 1069478944,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T21:58:00.000Z",
        "updated_at": "2026-07-03T21:58:00.000Z",
        "title": "Get all contact info for Leto team",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478944.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478944",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0ND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--1dc563f708ebc8a112773dc7ac4384ac9c783c6e.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478944/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478944/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478944/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Get all contact info for Leto team",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478944/completion.json",
        "steps": []
      },
      {
        "id": 1069478945,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T22:44:00.000Z",
        "updated_at": "2026-07-03T22:44:00.000Z",
        "title": "Add Leto folks to Basecamp",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478945.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478945",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0NT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b551b592960ba1bec0e8b2fd7d1e4e593694984a.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478945/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478945/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478945/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Add Leto folks to Basecamp",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478945/completion.json",
        "steps": []
      },
      {
        "id": 1069478946,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T22:50:00.000Z",
        "updated_at": "2026-07-03T22:50:00.000Z",
        "title": "Add Leto folks to Chat",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478946.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478946",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0Nj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3f312c5a8eaa377fd96759d38f2df963fb94f54f.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478946/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478946/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478946/boosts.json",
        "position": 3,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Add Leto folks to Chat",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478946/completion.json",
        "steps": []
      },
      {
        "id": 1069478947,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T23:32:00.000Z",
        "updated_at": "2026-07-03T23:32:00.000Z",
        "title": "Organize project plan",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478947.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478947",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0Nz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b73873e6daed49af4c68a09deab50110d32a3155.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478947/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478947/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478947/boosts.json",
        "position": 4,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Organize project plan",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478947/completion.json",
        "steps": []
      },
      {
        "id": 1069478948,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T23:59:00.000Z",
        "updated_at": "2026-07-03T23:59:00.000Z",
        "title": "Update resourcing sheet",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478948.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478948",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0OD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--c1906de11a11a567b1eaf14273b410279566ebfb.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478948/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478948/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478948/boosts.json",
        "position": 5,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Update resourcing sheet",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478948/completion.json",
        "steps": []
      },
      {
        "id": 1069478949,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-04T00:28:00.000Z",
        "updated_at": "2026-07-04T00:28:00.000Z",
        "title": "Talk to Mark about another creative lead",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478949.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478949",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--601bc02e6f7da4b9e4f7cec245cd98571b7963de.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478949/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478949/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478949/boosts.json",
        "position": 6,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Talk to Mark about another creative lead",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478949/completion.json",
        "steps": []
      },
      {
        "id": 1069478934,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T22:05:00.000Z",
        "updated_at": "2026-07-01T22:05:00.000Z",
        "title": "Talk to Cheryl about my benefits",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478934.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478934",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODkzND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--9f29496d732882841b592254b0f2e3c995c7536e.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478934/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478934/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478934/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Talk to Cheryl about my benefits",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478934/completion.json",
        "steps": []
      },
      {
        "id": 1069478935,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T22:06:00.000Z",
        "updated_at": "2026-07-01T22:06:00.000Z",
        "title": "Ask Victor about adding a few questions to Know Your Company",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478935.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478935",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODkzNT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--8cd868ebdb8235a0ad2c1d1ef1a1bcbe1fc11a45.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478935/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478935/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478935/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Ask Victor about adding a few questions to Know Your Company",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478935/completion.json",
        "steps": []
      },
      {
        "id": 1069478936,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T22:20:00.000Z",
        "updated_at": "2026-07-01T22:20:00.000Z",
        "title": "Schedule vacation for holidays",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478936.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478936",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODkzNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--0f748b70c196dfcc65a6da0cd5d6ae7889f7037c.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478936/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478936/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478936/boosts.json",
        "position": 3,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Schedule vacation for holidays",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478936/completion.json",
        "steps": []
      },
      {
        "id": 1069478937,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T22:23:00.000Z",
        "updated_at": "2026-07-01T22:23:00.000Z",
        "title": "Schedule 1-on-1 with Amy",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478937.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478937",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODkzNz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--d261e7ddc104c3edb7212caf35f4d35747b109b1.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478937/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478937/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478937/boosts.json",
        "position": 4,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Schedule 1-on-1 with Amy",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478937/completion.json",
        "steps": []
      },
      {
        "id": 1069478940,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T23:56:00.000Z",
        "updated_at": "2026-07-01T23:56:00.000Z",
        "title": "Help Jerry with Basecamp setup",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478940.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478940",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6857f08695aed6de791fb69d11041ed992584f72.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478940/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478940/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478940/boosts.json",
        "position": 5,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Help Jerry with Basecamp setup",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478940/completion.json",
        "steps": []
      },
      {
        "id": 1069478941,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-02T00:15:00.000Z",
        "updated_at": "2026-07-02T00:15:00.000Z",
        "title": "Blog post about our project management approach",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478941.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478941",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--383cbe2baeb5f833004f6395d1c21a3069c12cb7.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478941/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478941/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478941/boosts.json",
        "position": 6,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Blog post about our project management approach",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478941/completion.json",
        "steps": []
      },
      {
        "id": 1069478942,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-02T00:47:00.000Z",
        "updated_at": "2026-07-02T00:47:00.000Z",
        "title": "Holiday party prep",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478942.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478942",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--9294246f19ef5027ed9f5582d8e6672750cadae4.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478942/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478942/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478942/boosts.json",
        "position": 7,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Holiday party prep",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478942/completion.json",
        "steps": []
      }
    ]
  },
  {
    "bucket": {
      "id": 2085958501,
      "name": "Honcho Design Newsroom",
      "type": "Project"
    },
    "todos": [
      {
        "id": 1069479575,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T21:23:00.000Z",
        "updated_at": "2026-07-03T21:23:00.000Z",
        "title": "Final deck and presentation",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479575.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479575",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3NT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--adda152cf9cf63453c8e804413907e7a8e5ed49a.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479575/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479575/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479575/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Final deck and presentation",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479575/completion.json",
        "steps": []
      },
      {
        "id": 1069479576,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T21:24:00.000Z",
        "updated_at": "2026-07-03T21:24:00.000Z",
        "title": "Awards",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479576.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479576",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3Nj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--11a40c121978ed499b97e8c9ed0d3bfc8632df41.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479576/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479576/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479576/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Awards",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "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-07-28T20:18:48.192Z",
            "updated_at": "2026-07-28T20:18:50.599Z",
            "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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479576/completion.json",
        "steps": []
      },
      {
        "id": 1069479577,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T22:09:00.000Z",
        "updated_at": "2026-07-03T22:09:00.000Z",
        "title": "Organize conference rooms",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479577.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479577",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3Nz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--82c555b54ddfbb5cc4959a1eac738ee20c9f7deb.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479577/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479577/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479577/boosts.json",
        "position": 3,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Organize conference rooms",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479577/completion.json",
        "steps": []
      },
      {
        "id": 1069479578,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T22:16:00.000Z",
        "updated_at": "2026-07-03T22:16:00.000Z",
        "title": "Extra chairs",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479578.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479578",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3OD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b01137ef1ee1ea57f2ede903a731cf643c3841c6.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479578/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479578/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479578/boosts.json",
        "position": 4,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra chairs",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479578/completion.json",
        "steps": []
      },
      {
        "id": 1069479579,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T22:32:00.000Z",
        "updated_at": "2026-07-03T22:32:00.000Z",
        "title": "Snacks",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479579.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479579",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--9cdda21ae13a91733ace19e8b3871fb999096202.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479579/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479579/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479579/boosts.json",
        "position": 5,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Snacks",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479579/completion.json",
        "steps": []
      },
      {
        "id": 1069479580,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T23:05:00.000Z",
        "updated_at": "2026-07-03T23:05:00.000Z",
        "title": "Extra coffee",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479580.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479580",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--0a2ed4d8726f9e4734c3992f733c29679879b2c5.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479580/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479580/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479580/boosts.json",
        "position": 6,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra coffee",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479580/completion.json",
        "steps": []
      },
      {
        "id": 1069479581,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T23:28:00.000Z",
        "updated_at": "2026-07-03T23:28:00.000Z",
        "title": "Extra tea",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479581.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479581",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--ab6ea91bea029c554fe583b9b505e8d48ca17bc9.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479581/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479581/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479581/boosts.json",
        "position": 7,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra tea",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479581/completion.json",
        "steps": []
      },
      {
        "id": 1069479582,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-04T00:17:00.000Z",
        "updated_at": "2026-07-04T00:17:00.000Z",
        "title": "🍺 for the office",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479582.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479582",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3824a1c5d4a83318800dccff85da19151cd66788.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479582/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479582/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479582/boosts.json",
        "position": 8,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍺 for the office",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479582/completion.json",
        "steps": []
      },
      {
        "id": 1069479583,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-04T00:24:00.000Z",
        "updated_at": "2026-07-04T00:24:00.000Z",
        "title": "Extra mini fridges",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479583.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479583",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--ac8884ce8febf69d7dedba2bdbd479cec94880e7.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479583/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479583/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479583/boosts.json",
        "position": 9,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra mini fridges",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479583/completion.json",
        "steps": []
      },
      {
        "id": 1069479584,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-04T00:48:00.000Z",
        "updated_at": "2026-07-04T00:48:00.000Z",
        "title": "Maps and locations for out of towners",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479584.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479584",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4ND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--a1b0840f0e72858a7c9cf875a4b1dd6d9a6ac6c8.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479584/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479584/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479584/boosts.json",
        "position": 10,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Maps and locations for out of towners",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479584/completion.json",
        "steps": []
      },
      {
        "id": 1069479528,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T16:38:00.000Z",
        "updated_at": "2026-06-28T16:38:00.000Z",
        "title": "Cheryl vs. Julie",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479528.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479528",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUyOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--bf6255c3f6b3545fc02cacfd3e7225b0b9f64e43.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479528/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479528/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479528/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479527,
          "title": "Group A",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479527.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479527"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Cheryl vs. Julie",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479528/completion.json",
        "steps": []
      },
      {
        "id": 1069479529,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T17:11:00.000Z",
        "updated_at": "2026-06-28T17:11:00.000Z",
        "title": "Lillie vs. Charles",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479529.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479529",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUyOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--8af0ab8369ab47dccf9bd019184a889c72362317.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479529/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479529/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479529/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479527,
          "title": "Group A",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479527.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479527"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Lillie vs. Charles",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715926,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--f19c7e511cee5d9fddc93f7e758575b0137d3f70",
            "name": "Lillie McKenzie",
            "personable_type": "User",
            "title": "National Quality Executive",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:18:59.532Z",
            "updated_at": "2026-07-28T20:18:59.532Z",
            "email_address": "lillie@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNZkkT4=--bd9a40a89e6b5fa4250135f092cbea25391f74ac/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479529/completion.json",
        "steps": []
      },
      {
        "id": 1069479531,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T18:24:00.000Z",
        "updated_at": "2026-06-28T18:24:00.000Z",
        "title": "Annie vs. Steve",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479531.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479531",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--8aacb4397f95969b1e85946dee8a5b7b830c321e.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479531/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479531/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479531/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479530,
          "title": "Group B",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479530.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479530"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Annie vs. Steve",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479531/completion.json",
        "steps": []
      },
      {
        "id": 1069479532,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T18:54:00.000Z",
        "updated_at": "2026-06-28T18:54:00.000Z",
        "title": "Tashia vs. Zach",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479532.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479532",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzMj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--f14810e539ed9200b689be3e0943569c4fec0001.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479532/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479532/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479532/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479530,
          "title": "Group B",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479530.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479530"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Tashia vs. Zach",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715931,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--0c0826b2c47fc879d171cb99aa564d38e5a54a67",
            "name": "Tashia Hughes",
            "personable_type": "User",
            "title": "District Integration Architect",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:01.387Z",
            "updated_at": "2026-07-28T20:19:01.387Z",
            "email_address": "tashia@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNtkkT4=--b72a5df90f237e00570273b726a82176287186e4/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479532/completion.json",
        "steps": []
      },
      {
        "id": 1069479534,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T19:45:00.000Z",
        "updated_at": "2026-06-28T19:45:00.000Z",
        "title": "Josh vs. Andrew",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479534.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479534",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6b14b2832d0e1ddd8a65b5f44cde05f3f936e734.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479534/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479534/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479534/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479533,
          "title": "Group C",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479533.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479533"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Josh vs. Andrew",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715942,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--9e2080944c2f4ef95314dc6118f33af5972932a1",
            "name": "Josh Fiske",
            "personable_type": "User",
            "title": "Future Paradigm Planner",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:06.082Z",
            "updated_at": "2026-07-28T20:19:06.082Z",
            "email_address": "josh@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOZkkT4=--b8553b154990a1112ab6275b749296c4a3b56334/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479534/completion.json",
        "steps": []
      },
      {
        "id": 1069479535,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T20:13:00.000Z",
        "updated_at": "2026-06-28T20:13:00.000Z",
        "title": "Nicole vs. Dan",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479535.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479535",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzNT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6ee94a266781e745b143b5b4b57fe4bcc7a32472.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479535/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479535/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479535/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479533,
          "title": "Group C",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479533.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479533"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Nicole vs. Dan",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715943,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--b0c6d5901972863f2e810d0076490e014fe01bdd",
            "name": "Nicole Katz",
            "personable_type": "User",
            "title": "Legacy Usability Planner",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:06.632Z",
            "updated_at": "2026-07-28T20:19:06.632Z",
            "email_address": "nicole@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOdkkT4=--1d2b80e583133f93afe008f88166b674fc0287a4/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479535/completion.json",
        "steps": []
      },
      {
        "id": 1069479537,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T21:47:00.000Z",
        "updated_at": "2026-06-28T21:47:00.000Z",
        "title": "Carrie vs. Angela",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479537.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479537",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzNz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--0c81e08f7ae28afdd91d696408fbe0616a81b674.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479537/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479537/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479537/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479536,
          "title": "Group D",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479536.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479536"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Carrie vs. Angela",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715919,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4cf7157fe81f146684edbbf5809af23cd3140261",
            "name": "Carrie Ross",
            "personable_type": "User",
            "title": "Investor Assurance Director",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:18:56.570Z",
            "updated_at": "2026-07-28T20:18:56.570Z",
            "email_address": "carrie@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM9kkT4=--0cc032d27236a8be18675546364db5be45f251e2/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479537/completion.json",
        "steps": []
      },
      {
        "id": 1069479538,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T22:33:00.000Z",
        "updated_at": "2026-06-28T22:33:00.000Z",
        "title": "Amy vs. Sharon",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479538.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479538",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--8deb126e1f217488d3471712aadb05e8aa62aecf.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479538/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479538/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479538/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479536,
          "title": "Group D",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479536.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479536"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Amy vs. Sharon",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715915,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxNT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--56bb1f99675fd8fe08f93a706a5d2ddaa8412625",
            "name": "Amy Rivera",
            "personable_type": "User",
            "title": "Central Web Coordinator",
            "tagline": "I never said most of the things I said",
            "location": null,
            "created_at": "2026-07-28T20:18:52.913Z",
            "updated_at": "2026-07-28T20:18:52.913Z",
            "email_address": "amy@honchodesign.com",
            "bio": "I never said most of the things I said",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBMtkkT4=--9927c47a4cbee30a7f9aea667882496aba799149/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479538/completion.json",
        "steps": []
      },
      {
        "id": 1069479540,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T23:31:00.000Z",
        "updated_at": "2026-07-28T20:20:21.408Z",
        "title": "Victor vs. Jennifer",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479540.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479540",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6a15316a44472e51c53bde3809f25b7928d9ae94.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479540/subscription.json",
        "comments_count": 2,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479540/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479540/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479539,
          "title": "Group E",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479539.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479539"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Victor vs. Jennifer",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715941,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
            "name": "Jennifer Hemmersmith Young",
            "personable_type": "User",
            "title": "Lead Configuration Manager",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:05.405Z",
            "updated_at": "2026-07-28T20:19:05.405Z",
            "email_address": "jennifer@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479540/completion.json",
        "steps": []
      },
      {
        "id": 1069479543,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-29T00:46:00.000Z",
        "updated_at": "2026-06-29T00:46:00.000Z",
        "title": "Jerry vs. Mark",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479543.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479543",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU0Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--bb11fbb580cffa357694cefd7168cb6bbcbc4679.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479543/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479543/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479543/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479539,
          "title": "Group E",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479539.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479539"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Jerry vs. Mark",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715923,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--cd47d2c8e0331392dba60ca41aec78611b6f2f2e",
            "name": "Jerry Gibson",
            "personable_type": "User",
            "title": "Principal Configuration Planner",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:18:58.230Z",
            "updated_at": "2026-07-28T20:18:58.230Z",
            "email_address": "jerry@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNNkkT4=--e3c2676dde30e7c13f87642e3a3dd46ad657f731/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479543/completion.json",
        "steps": []
      },
      {
        "id": 1069479545,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-29T01:24:00.000Z",
        "updated_at": "2026-07-28T20:20:22.061Z",
        "title": "Matt vs. Brian",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479545.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479545",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU0NT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--4ecc639365c1b1091bba2cebaad8b5d8bd1be402.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479545/subscription.json",
        "comments_count": 3,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479545/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479545/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479544,
          "title": "Group F",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479544.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479544"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Matt vs. Brian",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715929,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d79103e78a10cd9f8ecda7470ea315674ac8a79a",
            "name": "Matt Donahue",
            "personable_type": "User",
            "title": "Global Data Strategist",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:00.652Z",
            "updated_at": "2026-07-28T20:19:00.652Z",
            "email_address": "matt@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNlkkT4=--0f3c77d8c13069d514fd3f0ad694a67e426bad0f/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479545/completion.json",
        "steps": []
      },
      {
        "id": 1069479549,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-29T03:33:00.000Z",
        "updated_at": "2026-07-28T20:20:22.358Z",
        "title": "Tim vs. Jay",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479549.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479549",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU0OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3ab33076cd1e8bc46c7d7c94cd5d65190211b8ec.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479549/subscription.json",
        "comments_count": 2,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479549/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479549/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479544,
          "title": "Group F",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479544.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479544"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Tim vs. Jay",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715932,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzMj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--b1eab2d203e51f559d3c2512294a047c79a0e660",
            "name": "Tim Scott",
            "personable_type": "User",
            "title": "Product Quality Associate",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:01.726Z",
            "updated_at": "2026-07-28T20:19:01.726Z",
            "email_address": "tim@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNxkkT4=--fb837e6e4e2bb2546540a882eb79a7bb0b429dec/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479549/completion.json",
        "steps": []
      },
      {
        "id": 1069479501,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T17:21:00.000Z",
        "updated_at": "2026-06-18T17:21:00.000Z",
        "title": "🍔Burger Bar",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479501.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479501",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--889199aa3ca393e9dda8992e840d4969b051f524.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479501/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479501/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479501/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍔Burger Bar",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479501/completion.json",
        "steps": []
      },
      {
        "id": 1069479503,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T17:53:00.000Z",
        "updated_at": "2026-06-18T17:53:00.000Z",
        "title": "🍩Le Croissant",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479503.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479503",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--cd3c7f07d7d843ee2e336cb688ef1dd906939e61.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479503/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479503/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479503/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍩Le Croissant",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479503/completion.json",
        "steps": []
      },
      {
        "id": 1069479505,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T19:26:00.000Z",
        "updated_at": "2026-06-18T19:26:00.000Z",
        "title": "🍳Feed",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479505.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479505",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwNT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--f6712ad4d59cfd45ba0696e3f01b5885e298b2b7.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479505/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479505/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479505/boosts.json",
        "position": 3,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍳Feed",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479505/completion.json",
        "steps": []
      },
      {
        "id": 1069479507,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T20:52:00.000Z",
        "updated_at": "2026-06-18T20:52:00.000Z",
        "title": "🍕Por Que Pizza",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479507.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479507",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwNz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3b1398cab533e13874546e8f4e2e6d6e7375f8ec.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479507/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479507/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479507/boosts.json",
        "position": 4,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715916,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--6414c77c0a206bc7d45987b8335318b768e8651f",
          "name": "Andrew Wong",
          "personable_type": "User",
          "title": "Senior Branding Strategist",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:54.985Z",
          "updated_at": "2026-07-28T20:18:54.985Z",
          "email_address": "andrew@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBMxkkT4=--0ea74d7e5d39ad2d120da79250b179b7e0b00c44/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍕Por Que Pizza",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479507/completion.json",
        "steps": []
      },
      {
        "id": 1069479511,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T23:03:00.000Z",
        "updated_at": "2026-06-18T23:03:00.000Z",
        "title": "🍗Chicken Little",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479511.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479511",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--71a0f540604280ca24702718161859f4189edd6b.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479511/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479511/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479511/boosts.json",
        "position": 5,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍗Chicken Little",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479511/completion.json",
        "steps": []
      },
      {
        "id": 1069479512,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T23:42:00.000Z",
        "updated_at": "2026-06-18T23:42:00.000Z",
        "title": "🍔Dinosaur Burgers",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479512.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479512",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxMj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--96957dace99c0e92c1f64d72bff2fa39100ce984.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479512/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479512/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479512/boosts.json",
        "position": 6,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍔Dinosaur Burgers",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479512/completion.json",
        "steps": []
      },
      {
        "id": 1069479513,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T23:44:00.000Z",
        "updated_at": "2026-07-28T20:20:14.284Z",
        "title": "🐷Smokey's House of Pork",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479513.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479513",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--501044ea488133571400c7f9f5c7663d95db7a10.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479513/subscription.json",
        "comments_count": 2,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479513/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479513/boosts.json",
        "position": 7,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🐷Smokey's House of Pork",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479513/completion.json",
        "steps": []
      },
      {
        "id": 1069479516,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-19T00:51:00.000Z",
        "updated_at": "2026-07-28T20:20:15.208Z",
        "title": "🍔Big Kahuna",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479516.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479516",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--788062ebf861632931e22eb2919458789b9292c7.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479516/subscription.json",
        "comments_count": 1,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479516/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479516/boosts.json",
        "position": 8,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍔Big Kahuna",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715940,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
            "name": "Jared Davis",
            "personable_type": "User",
            "title": "International Tactics Facilitator",
            "tagline": "Oh, so they have internet on computers now!",
            "location": null,
            "created_at": "2026-07-28T20:19:03.766Z",
            "updated_at": "2026-07-28T20:19:03.766Z",
            "email_address": "jared@honchodesign.com",
            "bio": "Oh, so they have internet on computers now!",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479516/completion.json",
        "steps": []
      },
      {
        "id": 1069479518,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-19T01:01:00.000Z",
        "updated_at": "2026-07-28T20:20:16.055Z",
        "title": "🍜Who's Up For Some Thai?",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479518.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479518",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--81731eca24b387ce6a8d025512f4c3d9313d3a23.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479518/subscription.json",
        "comments_count": 1,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479518/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479518/boosts.json",
        "position": 9,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍜Who's Up For Some Thai?",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479518/completion.json",
        "steps": []
      },
      {
        "id": 1069478990,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T06:09:00.000Z",
        "updated_at": "2026-05-03T06:09:00.000Z",
        "title": "Start open enrollment",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478990.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478990",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk5MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--2a325a47dabf62e3c2273b65bffb7b7df25d6c04.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478990/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478990/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478990/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Start open enrollment",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478990/completion.json",
        "steps": []
      }
    ]
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/todos/open.json
[
  {
    "bucket": {
      "id": 2085958500,
      "name": "Annie's Corner",
      "type": "Project"
    },
    "todos": [
      {
        "id": 1069478951,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-04T01:55:00.000Z",
        "updated_at": "2026-07-04T01:55:00.000Z",
        "title": "Talk to Scott about possible trip to Leto",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478951.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478951",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk1MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b700734fe8036ac3501e4ec251ad4e32fa0160ad.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478951/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478951/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478951/boosts.json",
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:15.599Z",
          "creator": {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        },
        "content": "Talk to Scott about possible trip to Leto",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478951/completion.json",
        "steps": []
      },
      {
        "id": 1069478950,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-04T01:20:00.000Z",
        "updated_at": "2026-07-04T01:20:00.000Z",
        "title": "Update Basecamp calendar",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478950.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478950",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk1MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b97a7ae5146f45cd8d942d808a97f510261b88d4.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478950/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478950/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478950/boosts.json",
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:15.154Z",
          "creator": {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        },
        "content": "Update Basecamp calendar",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478950/completion.json",
        "steps": []
      },
      {
        "id": 1069478939,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T23:18:00.000Z",
        "updated_at": "2026-07-01T23:18:00.000Z",
        "title": "Lunch with Nicole",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478939.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478939",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--84f9a39f42ed9d1e71d88cbb52a6c546ce3e8213.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478939/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478939/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478939/boosts.json",
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:11.408Z",
          "creator": {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        },
        "content": "Lunch with Nicole",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478939/completion.json",
        "steps": []
      },
      {
        "id": 1069478938,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T22:29:00.000Z",
        "updated_at": "2026-07-01T22:29:00.000Z",
        "title": "Check open enrollment stuff",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478938.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478938",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--ee8386ec618b14c0fb53b2babefe59382c304b25.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478938/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478938/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478938/boosts.json",
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:10.995Z",
          "creator": {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        },
        "content": "Check open enrollment stuff",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478938/completion.json",
        "steps": []
      }
    ]
  },
  {
    "bucket": {
      "id": 2085958501,
      "name": "Honcho Design Newsroom",
      "type": "Project"
    },
    "todos": [
      {
        "id": 1069479564,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T17:08:00.000Z",
        "updated_at": "2026-07-03T17:08:00.000Z",
        "title": "Flights",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479564.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479564",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU2ND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--25a52266f5e80d573c11de1237de12168844a5ff.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479564/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479564/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479564/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:23.397Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Flights",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715941,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
            "name": "Jennifer Hemmersmith Young",
            "personable_type": "User",
            "title": "Lead Configuration Manager",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:05.405Z",
            "updated_at": "2026-07-28T20:19:05.405Z",
            "email_address": "jennifer@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479564/completion.json",
        "steps": []
      },
      {
        "id": 1069479573,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T21:14:00.000Z",
        "updated_at": "2026-07-03T21:14:00.000Z",
        "title": "New software licenses",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479573.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479573",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3edc00987d9016d2ac5115dabef3d1f0f1dacb64.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479573/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479573/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479573/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:25.524Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "New software licenses",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479573/completion.json",
        "steps": []
      },
      {
        "id": 1069479572,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T20:17:00.000Z",
        "updated_at": "2026-07-03T20:17:00.000Z",
        "title": "New hardware",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479572.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479572",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--c1261836bc508f4c70789c99e651aaaadaa7f03f.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479572/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479572/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479572/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:25.288Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "New hardware",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479572/completion.json",
        "steps": []
      },
      {
        "id": 1069479571,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T19:19:00.000Z",
        "updated_at": "2026-07-03T19:19:00.000Z",
        "title": "Heads up to AMEX on expense spike",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479571.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479571",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--e991240434c719aaaac7cf504ef65e918bd79aca.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479571/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479571/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479571/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:25.005Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Heads up to AMEX on expense spike",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479571/completion.json",
        "steps": []
      },
      {
        "id": 1069479570,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T19:18:00.000Z",
        "updated_at": "2026-07-03T19:18:00.000Z",
        "title": "Happy Hours",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479570.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479570",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--89c9ba8bc7b6372374c0bcaf241d0da25266ab8a.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479570/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479570/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479570/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:24.779Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Happy Hours",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479570/completion.json",
        "steps": []
      },
      {
        "id": 1069479569,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T18:47:00.000Z",
        "updated_at": "2026-07-03T18:47:00.000Z",
        "title": "Dinners",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479569.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479569",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU2OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--05397bf931f65a41fe63ed1ffce0137674683b05.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479569/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479569/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479569/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:24.629Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Dinners",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479569/completion.json",
        "steps": []
      },
      {
        "id": 1069479568,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T18:19:00.000Z",
        "updated_at": "2026-07-03T18:19:00.000Z",
        "title": "Lunches",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479568.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479568",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU2OD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3f1fe4fc5b9510f33464f0ecff27391980a7c64a.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479568/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479568/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479568/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:24.467Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Lunches",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715941,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
            "name": "Jennifer Hemmersmith Young",
            "personable_type": "User",
            "title": "Lead Configuration Manager",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:05.405Z",
            "updated_at": "2026-07-28T20:19:05.405Z",
            "email_address": "jennifer@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479568/completion.json",
        "steps": []
      },
      {
        "id": 1069479567,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T18:10:00.000Z",
        "updated_at": "2026-07-03T18:10:00.000Z",
        "title": "Breakfasts",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479567.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479567",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU2Nz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--607ad272504bf4fb2677eaa8078d420513ab957d.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479567/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479567/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479567/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:24.234Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Breakfasts",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715941,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
            "name": "Jennifer Hemmersmith Young",
            "personable_type": "User",
            "title": "Lead Configuration Manager",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:05.405Z",
            "updated_at": "2026-07-28T20:19:05.405Z",
            "email_address": "jennifer@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479567/completion.json",
        "steps": []
      },
      {
        "id": 1069479566,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T18:08:00.000Z",
        "updated_at": "2026-07-03T18:08:00.000Z",
        "title": "Hotels",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479566.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479566",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU2Nj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3f7aa97ac7449d7539803ba56d5ea2c1642f8de0.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479566/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479566/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479566/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:23.985Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Hotels",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715941,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
            "name": "Jennifer Hemmersmith Young",
            "personable_type": "User",
            "title": "Lead Configuration Manager",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:05.405Z",
            "updated_at": "2026-07-28T20:19:05.405Z",
            "email_address": "jennifer@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479566/completion.json",
        "steps": []
      },
      {
        "id": 1069479565,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T17:14:00.000Z",
        "updated_at": "2026-07-03T17:14:00.000Z",
        "title": "Picnic location",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479565.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479565",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU2NT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--2029135d7ea0cea57e1ae4a81b7bebb331c103a2.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479565/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479565/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479565/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:23.697Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Picnic location",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715941,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
            "name": "Jennifer Hemmersmith Young",
            "personable_type": "User",
            "title": "Lead Configuration Manager",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:05.405Z",
            "updated_at": "2026-07-28T20:19:05.405Z",
            "email_address": "jennifer@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479565/completion.json",
        "steps": []
      },
      {
        "id": 1069479574,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T21:22:00.000Z",
        "updated_at": "2026-07-03T21:22:00.000Z",
        "title": "Picnic food",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479574.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479574",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3ND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--902c7ca4798684fca5b9fe7621a760f4a0d432cd.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479574/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479574/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479574/boosts.json",
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:25.793Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Picnic food",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479574/completion.json",
        "steps": []
      },
      {
        "id": 1069479510,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T22:21:00.000Z",
        "updated_at": "2026-06-18T22:21:00.000Z",
        "title": "🍟McDonald's",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479510.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479510",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxMD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--71bf43a79d5ba0c69845cb7bc7490371e3c58eca.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479510/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479510/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479510/boosts.json",
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715916,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--6414c77c0a206bc7d45987b8335318b768e8651f",
          "name": "Andrew Wong",
          "personable_type": "User",
          "title": "Senior Branding Strategist",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:54.985Z",
          "updated_at": "2026-07-28T20:18:54.985Z",
          "email_address": "andrew@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBMxkkT4=--0ea74d7e5d39ad2d120da79250b179b7e0b00c44/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:13.202Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "🍟McDonald's",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715940,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
            "name": "Jared Davis",
            "personable_type": "User",
            "title": "International Tactics Facilitator",
            "tagline": "Oh, so they have internet on computers now!",
            "location": null,
            "created_at": "2026-07-28T20:19:03.766Z",
            "updated_at": "2026-07-28T20:19:03.766Z",
            "email_address": "jared@honchodesign.com",
            "bio": "Oh, so they have internet on computers now!",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479510/completion.json",
        "steps": []
      },
      {
        "id": 1069479509,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T21:33:00.000Z",
        "updated_at": "2026-06-18T21:33:00.000Z",
        "title": "🍹Jimba Juice",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479509.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479509",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--8eac7f6b8fcb3d34f3f8a446c89820496a91c547.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479509/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479509/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479509/boosts.json",
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715916,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--6414c77c0a206bc7d45987b8335318b768e8651f",
          "name": "Andrew Wong",
          "personable_type": "User",
          "title": "Senior Branding Strategist",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:54.985Z",
          "updated_at": "2026-07-28T20:18:54.985Z",
          "email_address": "andrew@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBMxkkT4=--0ea74d7e5d39ad2d120da79250b179b7e0b00c44/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:12.531Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "🍹Jimba Juice",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479509/completion.json",
        "steps": []
      },
      {
        "id": 1069479508,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T20:58:00.000Z",
        "updated_at": "2026-06-18T20:58:00.000Z",
        "title": "🍲Perez Tacos",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479508.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479508",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6fbb338a706043627e3e68939d6950f5a7e11c27.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479508/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479508/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479508/boosts.json",
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715916,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--6414c77c0a206bc7d45987b8335318b768e8651f",
          "name": "Andrew Wong",
          "personable_type": "User",
          "title": "Senior Branding Strategist",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:54.985Z",
          "updated_at": "2026-07-28T20:18:54.985Z",
          "email_address": "andrew@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBMxkkT4=--0ea74d7e5d39ad2d120da79250b179b7e0b00c44/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:12.228Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "🍲Perez Tacos",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479508/completion.json",
        "steps": []
      },
      {
        "id": 1069479506,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T20:18:00.000Z",
        "updated_at": "2026-06-18T20:18:00.000Z",
        "title": "🇨🇳Panda Express",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479506.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479506",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--5efc5016b8702491ef6fb0a0f54b3a1390bc01ad.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479506/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479506/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479506/boosts.json",
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:11.596Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "🇨🇳Panda Express",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479506/completion.json",
        "steps": []
      },
      {
        "id": 1069479504,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T18:30:00.000Z",
        "updated_at": "2026-06-18T18:30:00.000Z",
        "title": "☕Big Cat Coffee",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479504.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479504",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--79470e7c7c2d141051098c04f101879fb84e272f.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479504/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479504/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479504/boosts.json",
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:11.085Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "☕Big Cat Coffee",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479504/completion.json",
        "steps": []
      },
      {
        "id": 1069479502,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T17:38:00.000Z",
        "updated_at": "2026-06-18T17:38:00.000Z",
        "title": "🍖Chipotle",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479502.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479502",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwMj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--5d54e22c381daf963a0e44649f96c4c0b75ba62b.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479502/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479502/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479502/boosts.json",
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:20:10.601Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "🍖Chipotle",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479502/completion.json",
        "steps": []
      },
      {
        "id": 1069478980,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T00:39:00.000Z",
        "updated_at": "2026-05-03T00:39:00.000Z",
        "title": "Compare providers",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478980.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478980",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk4MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--969f396105a2eb4ccd2119b1b729cdaffb7ffcc8.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478980/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478980/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478980/boosts.json",
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:18.024Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Compare providers",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478980/completion.json",
        "steps": []
      },
      {
        "id": 1069478988,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T05:10:00.000Z",
        "updated_at": "2026-05-03T05:10:00.000Z",
        "title": "Final docs and review with lawyer and accountant",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478988.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478988",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk4OD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--c30a3b3a7389e33d17a5e10f6c82070ad9efa4e8.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478988/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478988/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478988/boosts.json",
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:22.519Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Final docs and review with lawyer and accountant",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478988/completion.json",
        "steps": []
      },
      {
        "id": 1069478987,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T04:37:00.000Z",
        "updated_at": "2026-05-03T04:37:00.000Z",
        "title": "Update Basecamp document with benefits information",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478987.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478987",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk4Nz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--71bb1d086cea061c42cd87cee7e6377ca4de575e.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478987/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478987/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478987/boosts.json",
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:22.200Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Update Basecamp document with benefits information",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478987/completion.json",
        "steps": []
      },
      {
        "id": 1069478986,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T03:51:00.000Z",
        "updated_at": "2026-05-03T03:51:00.000Z",
        "title": "Figure out increases, update company budget",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478986.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478986",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk4Nj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--c4d32599f85725436e69b9a580a08f6617fdbf61.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478986/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478986/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478986/boosts.json",
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:21.963Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Figure out increases, update company budget",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478986/completion.json",
        "steps": []
      },
      {
        "id": 1069478985,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T02:57:00.000Z",
        "updated_at": "2026-05-03T02:57:00.000Z",
        "title": "Get approval on rate increases",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478985.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478985",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk4NT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--f745f0a5dc8108b7f361e578d47b72ff974ed50e.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478985/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478985/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478985/boosts.json",
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:21.714Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Get approval on rate increases",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715923,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--cd47d2c8e0331392dba60ca41aec78611b6f2f2e",
            "name": "Jerry Gibson",
            "personable_type": "User",
            "title": "Principal Configuration Planner",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:18:58.230Z",
            "updated_at": "2026-07-28T20:18:58.230Z",
            "email_address": "jerry@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNNkkT4=--e3c2676dde30e7c13f87642e3a3dd46ad657f731/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478985/completion.json",
        "steps": []
      },
      {
        "id": 1069478984,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T02:51:00.000Z",
        "updated_at": "2026-05-03T02:51:00.000Z",
        "title": "Review cost projections and impact analysis",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478984.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478984",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk4ND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--80168f167479a9067841aa2e6ffd2928c2e9ece1.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478984/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478984/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478984/boosts.json",
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:20.738Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Review cost projections and impact analysis",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715923,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--cd47d2c8e0331392dba60ca41aec78611b6f2f2e",
            "name": "Jerry Gibson",
            "personable_type": "User",
            "title": "Principal Configuration Planner",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:18:58.230Z",
            "updated_at": "2026-07-28T20:18:58.230Z",
            "email_address": "jerry@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNNkkT4=--e3c2676dde30e7c13f87642e3a3dd46ad657f731/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478984/completion.json",
        "steps": []
      },
      {
        "id": 1069478983,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T02:47:00.000Z",
        "updated_at": "2026-05-03T02:47:00.000Z",
        "title": "Update flex spending",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478983.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478983",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk4Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--1da2536b8014de85a6ef362c1add2b6c086cc64f.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478983/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478983/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478983/boosts.json",
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:19.995Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Update flex spending",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478983/completion.json",
        "steps": []
      },
      {
        "id": 1069478982,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T02:06:00.000Z",
        "updated_at": "2026-05-03T02:06:00.000Z",
        "title": "Update medical",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478982.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478982",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk4Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--f4558235e97063ec5a4a8e11288309374dcb26b6.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478982/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478982/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478982/boosts.json",
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:18.971Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Update medical",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478982/completion.json",
        "steps": []
      },
      {
        "id": 1069478981,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T01:37:00.000Z",
        "updated_at": "2026-05-03T01:37:00.000Z",
        "title": "Update dental",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478981.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478981",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk4MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6bbdef162eeeed6ab12e65b7c4373bd7b13085b3.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478981/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478981/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478981/boosts.json",
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:18.387Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Update dental",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478981/completion.json",
        "steps": []
      },
      {
        "id": 1069478989,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T05:51:00.000Z",
        "updated_at": "2026-05-03T05:51:00.000Z",
        "title": "Notify everyone on changes",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478989.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478989",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk4OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6b14e989215153a1384d69c178beeed03951ba99.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478989/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478989/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478989/boosts.json",
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-28T20:19:22.866Z",
          "creator": {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        },
        "content": "Notify everyone on changes",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478989/completion.json",
        "steps": []
      }
    ]
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/todos/completed.json
[
  {
    "bucket": {
      "id": 2085958502,
      "name": "Honcho Design Newsroom",
      "type": "Project"
    },
    "todos": [
      {
        "id": 1069479578,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-04T03:05:00.000Z",
        "updated_at": "2026-05-04T03:05:00.000Z",
        "title": "Extra chairs",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479578.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479578",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3OD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b01137ef1ee1ea57f2ede903a731cf643c3841c6.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479578/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479578/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479578/boosts.json",
        "position": 4,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-05-28T17:22:30.128Z",
          "updated_at": "2026-05-28T17:22:30.128Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra chairs",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479578/completion.json",
        "steps": []
      },
      {
        "id": 1069479579,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-04T03:20:00.000Z",
        "updated_at": "2026-05-04T03:20:00.000Z",
        "title": "Snacks",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479579.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479579",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--9cdda21ae13a91733ace19e8b3871fb999096202.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479579/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479579/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479579/boosts.json",
        "position": 5,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-05-28T17:22:30.128Z",
          "updated_at": "2026-05-28T17:22:30.128Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Snacks",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479579/completion.json",
        "steps": []
      },
      {
        "id": 1069479580,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-04T04:09:00.000Z",
        "updated_at": "2026-05-04T04:09:00.000Z",
        "title": "Extra coffee",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479580.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479580",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--0a2ed4d8726f9e4734c3992f733c29679879b2c5.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479580/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479580/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479580/boosts.json",
        "position": 6,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-05-28T17:22:30.128Z",
          "updated_at": "2026-05-28T17:22:30.128Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra coffee",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479580/completion.json",
        "steps": []
      },
      {
        "id": 1069479581,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-04T04:30:00.000Z",
        "updated_at": "2026-05-04T04:30:00.000Z",
        "title": "Extra tea",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479581.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479581",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--ab6ea91bea029c554fe583b9b505e8d48ca17bc9.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479581/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479581/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479581/boosts.json",
        "position": 7,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-05-28T17:22:30.128Z",
          "updated_at": "2026-05-28T17:22:30.128Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra tea",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479581/completion.json",
        "steps": []
      },
      {
        "id": 1069479582,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-04T04:32:00.000Z",
        "updated_at": "2026-05-04T04:32:00.000Z",
        "title": "🍺 for the office",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479582.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479582",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3824a1c5d4a83318800dccff85da19151cd66788.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479582/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479582/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479582/boosts.json",
        "position": 8,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-05-28T17:22:30.128Z",
          "updated_at": "2026-05-28T17:22:30.128Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍺 for the office",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479582/completion.json",
        "steps": []
      },
      {
        "id": 1069479583,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-04T05:11:00.000Z",
        "updated_at": "2026-05-04T05:11:00.000Z",
        "title": "Extra mini fridges",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479583.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479583",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--ac8884ce8febf69d7dedba2bdbd479cec94880e7.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479583/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479583/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479583/boosts.json",
        "position": 9,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-05-28T17:22:30.128Z",
          "updated_at": "2026-05-28T17:22:30.128Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra mini fridges",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479583/completion.json",
        "steps": []
      },
      {
        "id": 1069479584,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-04T05:45:00.000Z",
        "updated_at": "2026-05-04T05:45:00.000Z",
        "title": "Maps and locations for out of towners",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479584.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479584",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4ND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--a1b0840f0e72858a7c9cf875a4b1dd6d9a6ac6c8.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479584/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479584/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479584/boosts.json",
        "position": 10,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-05-28T17:22:30.128Z",
          "updated_at": "2026-05-28T17:22:30.128Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Maps and locations for out of towners",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479584/completion.json",
        "steps": []
      },
      {
        "id": 1069479501,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-04-18T19:36:00.000Z",
        "updated_at": "2026-04-18T19:36:00.000Z",
        "title": "🍔Burger Bar",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479501.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479501",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--889199aa3ca393e9dda8992e840d4969b051f524.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479501/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479501/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479501/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-05-28T17:22:29.827Z",
          "updated_at": "2026-05-28T17:22:29.827Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍔Burger Bar",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479501/completion.json",
        "steps": []
      },
      {
        "id": 1069479503,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-04-18T20:50:00.000Z",
        "updated_at": "2026-04-18T20:50:00.000Z",
        "title": "🍩Le Croissant",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479503.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479503",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--cd3c7f07d7d843ee2e336cb688ef1dd906939e61.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479503/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479503/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479503/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-05-28T17:22:29.167Z",
          "updated_at": "2026-05-28T17:22:29.167Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍩Le Croissant",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479503/completion.json",
        "steps": []
      },
      {
        "id": 1069479505,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-04-18T21:23:00.000Z",
        "updated_at": "2026-04-18T21:23:00.000Z",
        "title": "🍳Feed",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479505.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479505",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwNT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--f6712ad4d59cfd45ba0696e3f01b5885e298b2b7.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479505/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479505/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479505/boosts.json",
        "position": 3,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-05-28T17:22:29.167Z",
          "updated_at": "2026-05-28T17:22:29.167Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍳Feed",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479505/completion.json",
        "steps": []
      },
      {
        "id": 1069479511,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-04-19T01:04:00.000Z",
        "updated_at": "2026-04-19T01:04:00.000Z",
        "title": "🍗Chicken Little",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479511.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479511",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--71a0f540604280ca24702718161859f4189edd6b.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479511/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479511/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479511/boosts.json",
        "position": 5,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-05-28T17:22:29.827Z",
          "updated_at": "2026-05-28T17:22:29.827Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍗Chicken Little",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479511/completion.json",
        "steps": []
      },
      {
        "id": 1069479512,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-04-19T01:47:00.000Z",
        "updated_at": "2026-04-19T01:47:00.000Z",
        "title": "🍔Dinosaur Burgers",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479512.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479512",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxMj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--96957dace99c0e92c1f64d72bff2fa39100ce984.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479512/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479512/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479512/boosts.json",
        "position": 6,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-05-28T17:22:29.827Z",
          "updated_at": "2026-05-28T17:22:29.827Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍔Dinosaur Burgers",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479512/completion.json",
        "steps": []
      },
      {
        "id": 1069479513,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-04-19T02:20:00.000Z",
        "updated_at": "2026-05-28T17:22:58.705Z",
        "title": "🐷Smokey's House of Pork",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479513.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479513",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--501044ea488133571400c7f9f5c7663d95db7a10.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479513/subscription.json",
        "comments_count": 2,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479513/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479513/boosts.json",
        "position": 7,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-05-28T17:22:29.827Z",
          "updated_at": "2026-05-28T17:22:29.827Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🐷Smokey's House of Pork",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479513/completion.json",
        "steps": []
      },
      {
        "id": 1069479518,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-04-19T04:42:00.000Z",
        "updated_at": "2026-05-28T17:22:58.928Z",
        "title": "🍜Who's Up For Some Thai?",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todos/1069479518.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todos/1069479518",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--81731eca24b387ce6a8d025512f4c3d9313d3a23.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479518/subscription.json",
        "comments_count": 1,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479518/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479518/boosts.json",
        "position": 9,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958502/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958502,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-05-28T17:22:29.167Z",
          "updated_at": "2026-05-28T17:22:29.167Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍜Who's Up For Some Thai?",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479518/completion.json",
        "steps": []
      }
    ]
  },
  {
    "bucket": {
      "id": 2085958504,
      "name": "Honcho HQ",
      "type": "Project"
    },
    "todos": [
      {
        "id": 1069479803,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-21T23:29:00.000Z",
        "updated_at": "2026-05-21T23:29:00.000Z",
        "title": "Check initial campaign results",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958504/todos/1069479803.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/todos/1069479803",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTgwMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--d15f463f4a2042c5c3901d0dd46eeb66ffacc943.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479803/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479803/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479803/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479800,
          "title": "TV Ad",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958504/todolists/1069479800.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/todolists/1069479800"
        },
        "bucket": {
          "id": 2085958504,
          "name": "Honcho HQ",
          "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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Check initial campaign results",
        "starts_on": null,
        "due_on": "2026-06-19",
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479803/completion.json",
        "steps": []
      },
      {
        "id": 1069479805,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-21T23:39:00.000Z",
        "updated_at": "2026-05-28T17:23:17.199Z",
        "title": "Check campaign results",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958504/todos/1069479805.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/todos/1069479805",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTgwNT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--7be2fe2eb73c2a3174f549140c061f808ad54907.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479805/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479805/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479805/boosts.json",
        "position": 4,
        "parent": {
          "id": 1069479800,
          "title": "TV Ad",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958504/todolists/1069479800.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/todolists/1069479800"
        },
        "bucket": {
          "id": 2085958504,
          "name": "Honcho HQ",
          "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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Check campaign results",
        "starts_on": null,
        "due_on": "2026-06-20",
        "repetition_schedule": {
          "frequency": "every_day",
          "days": [],
          "hour": 0,
          "minute": 0,
          "week_instance": null,
          "week_interval": null,
          "month_interval": null,
          "start_date": "2026-06-20",
          "duration": null,
          "end_date": null
        },
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479805/completion.json",
        "steps": []
      }
    ]
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/todos/unassigned.json
[
  {
    "bucket": {
      "id": 2085958500,
      "name": "Annie's Corner",
      "type": "Project"
    },
    "todos": [
      {
        "id": 1069478944,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T21:58:00.000Z",
        "updated_at": "2026-07-03T21:58:00.000Z",
        "title": "Get all contact info for Leto team",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478944.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478944",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0ND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--1dc563f708ebc8a112773dc7ac4384ac9c783c6e.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478944/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478944/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478944/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Get all contact info for Leto team",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478944/completion.json",
        "steps": []
      },
      {
        "id": 1069478945,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T22:44:00.000Z",
        "updated_at": "2026-07-03T22:44:00.000Z",
        "title": "Add Leto folks to Basecamp",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478945.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478945",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0NT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b551b592960ba1bec0e8b2fd7d1e4e593694984a.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478945/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478945/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478945/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Add Leto folks to Basecamp",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478945/completion.json",
        "steps": []
      },
      {
        "id": 1069478946,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T22:50:00.000Z",
        "updated_at": "2026-07-03T22:50:00.000Z",
        "title": "Add Leto folks to Chat",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478946.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478946",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0Nj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3f312c5a8eaa377fd96759d38f2df963fb94f54f.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478946/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478946/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478946/boosts.json",
        "position": 3,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Add Leto folks to Chat",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478946/completion.json",
        "steps": []
      },
      {
        "id": 1069478947,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T23:32:00.000Z",
        "updated_at": "2026-07-03T23:32:00.000Z",
        "title": "Organize project plan",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478947.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478947",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0Nz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b73873e6daed49af4c68a09deab50110d32a3155.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478947/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478947/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478947/boosts.json",
        "position": 4,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Organize project plan",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478947/completion.json",
        "steps": []
      },
      {
        "id": 1069478948,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T23:59:00.000Z",
        "updated_at": "2026-07-03T23:59:00.000Z",
        "title": "Update resourcing sheet",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478948.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478948",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0OD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--c1906de11a11a567b1eaf14273b410279566ebfb.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478948/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478948/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478948/boosts.json",
        "position": 5,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Update resourcing sheet",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478948/completion.json",
        "steps": []
      },
      {
        "id": 1069478949,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-04T00:28:00.000Z",
        "updated_at": "2026-07-04T00:28:00.000Z",
        "title": "Talk to Mark about another creative lead",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478949.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478949",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--601bc02e6f7da4b9e4f7cec245cd98571b7963de.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478949/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478949/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478949/boosts.json",
        "position": 6,
        "parent": {
          "id": 1069478943,
          "title": "Project stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478943.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478943"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Talk to Mark about another creative lead",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478949/completion.json",
        "steps": []
      },
      {
        "id": 1069478934,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T22:05:00.000Z",
        "updated_at": "2026-07-01T22:05:00.000Z",
        "title": "Talk to Cheryl about my benefits",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478934.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478934",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODkzND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--9f29496d732882841b592254b0f2e3c995c7536e.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478934/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478934/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478934/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Talk to Cheryl about my benefits",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478934/completion.json",
        "steps": []
      },
      {
        "id": 1069478935,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T22:06:00.000Z",
        "updated_at": "2026-07-01T22:06:00.000Z",
        "title": "Ask Victor about adding a few questions to Know Your Company",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478935.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478935",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODkzNT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--8cd868ebdb8235a0ad2c1d1ef1a1bcbe1fc11a45.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478935/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478935/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478935/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Ask Victor about adding a few questions to Know Your Company",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478935/completion.json",
        "steps": []
      },
      {
        "id": 1069478936,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T22:20:00.000Z",
        "updated_at": "2026-07-01T22:20:00.000Z",
        "title": "Schedule vacation for holidays",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478936.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478936",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODkzNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--0f748b70c196dfcc65a6da0cd5d6ae7889f7037c.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478936/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478936/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478936/boosts.json",
        "position": 3,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Schedule vacation for holidays",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478936/completion.json",
        "steps": []
      },
      {
        "id": 1069478937,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T22:23:00.000Z",
        "updated_at": "2026-07-01T22:23:00.000Z",
        "title": "Schedule 1-on-1 with Amy",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478937.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478937",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODkzNz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--d261e7ddc104c3edb7212caf35f4d35747b109b1.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478937/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478937/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478937/boosts.json",
        "position": 4,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Schedule 1-on-1 with Amy",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478937/completion.json",
        "steps": []
      },
      {
        "id": 1069478940,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-01T23:56:00.000Z",
        "updated_at": "2026-07-01T23:56:00.000Z",
        "title": "Help Jerry with Basecamp setup",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478940.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478940",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6857f08695aed6de791fb69d11041ed992584f72.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478940/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478940/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478940/boosts.json",
        "position": 5,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Help Jerry with Basecamp setup",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478940/completion.json",
        "steps": []
      },
      {
        "id": 1069478941,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-02T00:15:00.000Z",
        "updated_at": "2026-07-02T00:15:00.000Z",
        "title": "Blog post about our project management approach",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478941.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478941",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--383cbe2baeb5f833004f6395d1c21a3069c12cb7.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478941/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478941/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478941/boosts.json",
        "position": 6,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Blog post about our project management approach",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478941/completion.json",
        "steps": []
      },
      {
        "id": 1069478942,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-02T00:47:00.000Z",
        "updated_at": "2026-07-02T00:47:00.000Z",
        "title": "Holiday party prep",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todos/1069478942.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todos/1069478942",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk0Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--9294246f19ef5027ed9f5582d8e6672750cadae4.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478942/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478942/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958500/recordings/1069478942/boosts.json",
        "position": 7,
        "parent": {
          "id": 1069478933,
          "title": "General stuff",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958500/todolists/1069478933.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958500/todolists/1069478933"
        },
        "bucket": {
          "id": 2085958500,
          "name": "Annie's Corner",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Holiday party prep",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478942/completion.json",
        "steps": []
      }
    ]
  },
  {
    "bucket": {
      "id": 2085958501,
      "name": "Honcho Design Newsroom",
      "type": "Project"
    },
    "todos": [
      {
        "id": 1069479575,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T21:23:00.000Z",
        "updated_at": "2026-07-03T21:23:00.000Z",
        "title": "Final deck and presentation",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479575.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479575",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3NT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--adda152cf9cf63453c8e804413907e7a8e5ed49a.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479575/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479575/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479575/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Final deck and presentation",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479575/completion.json",
        "steps": []
      },
      {
        "id": 1069479576,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T21:24:00.000Z",
        "updated_at": "2026-07-03T21:24:00.000Z",
        "title": "Awards",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479576.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479576",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3Nj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--11a40c121978ed499b97e8c9ed0d3bfc8632df41.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479576/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479576/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479576/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Awards",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "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-07-28T20:18:48.192Z",
            "updated_at": "2026-07-28T20:18:50.599Z",
            "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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479576/completion.json",
        "steps": []
      },
      {
        "id": 1069479577,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T22:09:00.000Z",
        "updated_at": "2026-07-03T22:09:00.000Z",
        "title": "Organize conference rooms",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479577.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479577",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3Nz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--82c555b54ddfbb5cc4959a1eac738ee20c9f7deb.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479577/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479577/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479577/boosts.json",
        "position": 3,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Organize conference rooms",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479577/completion.json",
        "steps": []
      },
      {
        "id": 1069479578,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T22:16:00.000Z",
        "updated_at": "2026-07-03T22:16:00.000Z",
        "title": "Extra chairs",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479578.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479578",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3OD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b01137ef1ee1ea57f2ede903a731cf643c3841c6.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479578/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479578/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479578/boosts.json",
        "position": 4,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra chairs",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479578/completion.json",
        "steps": []
      },
      {
        "id": 1069479579,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T22:32:00.000Z",
        "updated_at": "2026-07-03T22:32:00.000Z",
        "title": "Snacks",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479579.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479579",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU3OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--9cdda21ae13a91733ace19e8b3871fb999096202.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479579/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479579/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479579/boosts.json",
        "position": 5,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Snacks",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479579/completion.json",
        "steps": []
      },
      {
        "id": 1069479580,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T23:05:00.000Z",
        "updated_at": "2026-07-03T23:05:00.000Z",
        "title": "Extra coffee",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479580.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479580",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--0a2ed4d8726f9e4734c3992f733c29679879b2c5.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479580/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479580/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479580/boosts.json",
        "position": 6,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra coffee",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479580/completion.json",
        "steps": []
      },
      {
        "id": 1069479581,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-03T23:28:00.000Z",
        "updated_at": "2026-07-03T23:28:00.000Z",
        "title": "Extra tea",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479581.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479581",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--ab6ea91bea029c554fe583b9b505e8d48ca17bc9.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479581/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479581/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479581/boosts.json",
        "position": 7,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra tea",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479581/completion.json",
        "steps": []
      },
      {
        "id": 1069479582,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-04T00:17:00.000Z",
        "updated_at": "2026-07-04T00:17:00.000Z",
        "title": "🍺 for the office",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479582.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479582",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3824a1c5d4a83318800dccff85da19151cd66788.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479582/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479582/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479582/boosts.json",
        "position": 8,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍺 for the office",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479582/completion.json",
        "steps": []
      },
      {
        "id": 1069479583,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-04T00:24:00.000Z",
        "updated_at": "2026-07-04T00:24:00.000Z",
        "title": "Extra mini fridges",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479583.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479583",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--ac8884ce8febf69d7dedba2bdbd479cec94880e7.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479583/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479583/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479583/boosts.json",
        "position": 9,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Extra mini fridges",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479583/completion.json",
        "steps": []
      },
      {
        "id": 1069479584,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-04T00:48:00.000Z",
        "updated_at": "2026-07-04T00:48:00.000Z",
        "title": "Maps and locations for out of towners",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479584.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479584",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU4ND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--a1b0840f0e72858a7c9cf875a4b1dd6d9a6ac6c8.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479584/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479584/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479584/boosts.json",
        "position": 10,
        "parent": {
          "id": 1069479563,
          "title": "Meetup setup",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479563.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479563"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715941,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
          "name": "Jennifer Hemmersmith Young",
          "personable_type": "User",
          "title": "Lead Configuration Manager",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:19:05.405Z",
          "updated_at": "2026-07-28T20:19:05.405Z",
          "email_address": "jennifer@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Maps and locations for out of towners",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479584/completion.json",
        "steps": []
      },
      {
        "id": 1069479528,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T16:38:00.000Z",
        "updated_at": "2026-06-28T16:38:00.000Z",
        "title": "Cheryl vs. Julie",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479528.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479528",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUyOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--bf6255c3f6b3545fc02cacfd3e7225b0b9f64e43.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479528/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479528/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479528/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479527,
          "title": "Group A",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479527.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479527"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Cheryl vs. Julie",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479528/completion.json",
        "steps": []
      },
      {
        "id": 1069479529,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T17:11:00.000Z",
        "updated_at": "2026-06-28T17:11:00.000Z",
        "title": "Lillie vs. Charles",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479529.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479529",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUyOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--8af0ab8369ab47dccf9bd019184a889c72362317.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479529/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479529/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479529/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479527,
          "title": "Group A",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479527.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479527"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Lillie vs. Charles",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715926,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--f19c7e511cee5d9fddc93f7e758575b0137d3f70",
            "name": "Lillie McKenzie",
            "personable_type": "User",
            "title": "National Quality Executive",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:18:59.532Z",
            "updated_at": "2026-07-28T20:18:59.532Z",
            "email_address": "lillie@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNZkkT4=--bd9a40a89e6b5fa4250135f092cbea25391f74ac/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479529/completion.json",
        "steps": []
      },
      {
        "id": 1069479531,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T18:24:00.000Z",
        "updated_at": "2026-06-28T18:24:00.000Z",
        "title": "Annie vs. Steve",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479531.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479531",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--8aacb4397f95969b1e85946dee8a5b7b830c321e.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479531/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479531/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479531/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479530,
          "title": "Group B",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479530.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479530"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Annie vs. Steve",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479531/completion.json",
        "steps": []
      },
      {
        "id": 1069479532,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T18:54:00.000Z",
        "updated_at": "2026-06-28T18:54:00.000Z",
        "title": "Tashia vs. Zach",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479532.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479532",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzMj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--f14810e539ed9200b689be3e0943569c4fec0001.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479532/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479532/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479532/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479530,
          "title": "Group B",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479530.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479530"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Tashia vs. Zach",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715931,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--0c0826b2c47fc879d171cb99aa564d38e5a54a67",
            "name": "Tashia Hughes",
            "personable_type": "User",
            "title": "District Integration Architect",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:01.387Z",
            "updated_at": "2026-07-28T20:19:01.387Z",
            "email_address": "tashia@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNtkkT4=--b72a5df90f237e00570273b726a82176287186e4/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479532/completion.json",
        "steps": []
      },
      {
        "id": 1069479534,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T19:45:00.000Z",
        "updated_at": "2026-06-28T19:45:00.000Z",
        "title": "Josh vs. Andrew",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479534.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479534",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6b14b2832d0e1ddd8a65b5f44cde05f3f936e734.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479534/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479534/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479534/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479533,
          "title": "Group C",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479533.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479533"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Josh vs. Andrew",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715942,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--9e2080944c2f4ef95314dc6118f33af5972932a1",
            "name": "Josh Fiske",
            "personable_type": "User",
            "title": "Future Paradigm Planner",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:06.082Z",
            "updated_at": "2026-07-28T20:19:06.082Z",
            "email_address": "josh@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOZkkT4=--b8553b154990a1112ab6275b749296c4a3b56334/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479534/completion.json",
        "steps": []
      },
      {
        "id": 1069479535,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T20:13:00.000Z",
        "updated_at": "2026-06-28T20:13:00.000Z",
        "title": "Nicole vs. Dan",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479535.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479535",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzNT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6ee94a266781e745b143b5b4b57fe4bcc7a32472.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479535/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479535/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479535/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479533,
          "title": "Group C",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479533.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479533"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Nicole vs. Dan",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715943,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--b0c6d5901972863f2e810d0076490e014fe01bdd",
            "name": "Nicole Katz",
            "personable_type": "User",
            "title": "Legacy Usability Planner",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:06.632Z",
            "updated_at": "2026-07-28T20:19:06.632Z",
            "email_address": "nicole@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOdkkT4=--1d2b80e583133f93afe008f88166b674fc0287a4/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479535/completion.json",
        "steps": []
      },
      {
        "id": 1069479537,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T21:47:00.000Z",
        "updated_at": "2026-06-28T21:47:00.000Z",
        "title": "Carrie vs. Angela",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479537.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479537",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzNz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--0c81e08f7ae28afdd91d696408fbe0616a81b674.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479537/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479537/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479537/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479536,
          "title": "Group D",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479536.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479536"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Carrie vs. Angela",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715919,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4cf7157fe81f146684edbbf5809af23cd3140261",
            "name": "Carrie Ross",
            "personable_type": "User",
            "title": "Investor Assurance Director",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:18:56.570Z",
            "updated_at": "2026-07-28T20:18:56.570Z",
            "email_address": "carrie@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM9kkT4=--0cc032d27236a8be18675546364db5be45f251e2/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479537/completion.json",
        "steps": []
      },
      {
        "id": 1069479538,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T22:33:00.000Z",
        "updated_at": "2026-06-28T22:33:00.000Z",
        "title": "Amy vs. Sharon",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479538.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479538",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--8deb126e1f217488d3471712aadb05e8aa62aecf.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479538/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479538/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479538/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479536,
          "title": "Group D",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479536.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479536"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Amy vs. Sharon",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715915,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxNT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--56bb1f99675fd8fe08f93a706a5d2ddaa8412625",
            "name": "Amy Rivera",
            "personable_type": "User",
            "title": "Central Web Coordinator",
            "tagline": "I never said most of the things I said",
            "location": null,
            "created_at": "2026-07-28T20:18:52.913Z",
            "updated_at": "2026-07-28T20:18:52.913Z",
            "email_address": "amy@honchodesign.com",
            "bio": "I never said most of the things I said",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBMtkkT4=--9927c47a4cbee30a7f9aea667882496aba799149/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479538/completion.json",
        "steps": []
      },
      {
        "id": 1069479540,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-28T23:31:00.000Z",
        "updated_at": "2026-07-28T20:20:21.408Z",
        "title": "Victor vs. Jennifer",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479540.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479540",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--6a15316a44472e51c53bde3809f25b7928d9ae94.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479540/subscription.json",
        "comments_count": 2,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479540/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479540/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479539,
          "title": "Group E",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479539.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479539"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Victor vs. Jennifer",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715941,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
            "name": "Jennifer Hemmersmith Young",
            "personable_type": "User",
            "title": "Lead Configuration Manager",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:05.405Z",
            "updated_at": "2026-07-28T20:19:05.405Z",
            "email_address": "jennifer@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479540/completion.json",
        "steps": []
      },
      {
        "id": 1069479543,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-29T00:46:00.000Z",
        "updated_at": "2026-06-29T00:46:00.000Z",
        "title": "Jerry vs. Mark",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479543.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479543",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU0Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--bb11fbb580cffa357694cefd7168cb6bbcbc4679.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479543/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479543/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479543/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479539,
          "title": "Group E",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479539.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479539"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Jerry vs. Mark",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715923,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--cd47d2c8e0331392dba60ca41aec78611b6f2f2e",
            "name": "Jerry Gibson",
            "personable_type": "User",
            "title": "Principal Configuration Planner",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:18:58.230Z",
            "updated_at": "2026-07-28T20:18:58.230Z",
            "email_address": "jerry@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNNkkT4=--e3c2676dde30e7c13f87642e3a3dd46ad657f731/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479543/completion.json",
        "steps": []
      },
      {
        "id": 1069479545,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-29T01:24:00.000Z",
        "updated_at": "2026-07-28T20:20:22.061Z",
        "title": "Matt vs. Brian",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479545.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479545",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU0NT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--4ecc639365c1b1091bba2cebaad8b5d8bd1be402.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479545/subscription.json",
        "comments_count": 3,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479545/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479545/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479544,
          "title": "Group F",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479544.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479544"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Matt vs. Brian",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715929,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d79103e78a10cd9f8ecda7470ea315674ac8a79a",
            "name": "Matt Donahue",
            "personable_type": "User",
            "title": "Global Data Strategist",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:00.652Z",
            "updated_at": "2026-07-28T20:19:00.652Z",
            "email_address": "matt@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNlkkT4=--0f3c77d8c13069d514fd3f0ad694a67e426bad0f/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479545/completion.json",
        "steps": []
      },
      {
        "id": 1069479549,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-29T03:33:00.000Z",
        "updated_at": "2026-07-28T20:20:22.358Z",
        "title": "Tim vs. Jay",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479549.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479549",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTU0OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3ab33076cd1e8bc46c7d7c94cd5d65190211b8ec.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479549/subscription.json",
        "comments_count": 2,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479549/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479549/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479544,
          "title": "Group F",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479544.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479544"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715918,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d6212bd7e60bf63ea61797589b2638cbbf2d4ed7",
          "name": "Brian Jenks",
          "personable_type": "User",
          "title": "International Branding Liason",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:56.200Z",
          "updated_at": "2026-07-28T20:18:56.200Z",
          "email_address": "brian@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBM5kkT4=--50075f17f313c1198fb6f27e5d466327804dfd22/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Tim vs. Jay",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715932,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzMj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--b1eab2d203e51f559d3c2512294a047c79a0e660",
            "name": "Tim Scott",
            "personable_type": "User",
            "title": "Product Quality Associate",
            "tagline": null,
            "location": null,
            "created_at": "2026-07-28T20:19:01.726Z",
            "updated_at": "2026-07-28T20:19:01.726Z",
            "email_address": "tim@honchodesign.com",
            "bio": null,
            "admin": false,
            "owner": false,
            "client": false,
            "employee": false,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNxkkT4=--fb837e6e4e2bb2546540a882eb79a7bb0b429dec/avatar",
            "can_ping": true,
            "can_manage_projects": true,
            "can_manage_people": true,
            "can_access_timesheet": true,
            "can_access_hill_charts": true
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479549/completion.json",
        "steps": []
      },
      {
        "id": 1069479501,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T17:21:00.000Z",
        "updated_at": "2026-06-18T17:21:00.000Z",
        "title": "🍔Burger Bar",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479501.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479501",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--889199aa3ca393e9dda8992e840d4969b051f524.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479501/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479501/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479501/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍔Burger Bar",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479501/completion.json",
        "steps": []
      },
      {
        "id": 1069479503,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T17:53:00.000Z",
        "updated_at": "2026-06-18T17:53:00.000Z",
        "title": "🍩Le Croissant",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479503.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479503",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--cd3c7f07d7d843ee2e336cb688ef1dd906939e61.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479503/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479503/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479503/boosts.json",
        "position": 2,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍩Le Croissant",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479503/completion.json",
        "steps": []
      },
      {
        "id": 1069479505,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T19:26:00.000Z",
        "updated_at": "2026-06-18T19:26:00.000Z",
        "title": "🍳Feed",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479505.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479505",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwNT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--f6712ad4d59cfd45ba0696e3f01b5885e298b2b7.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479505/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479505/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479505/boosts.json",
        "position": 3,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍳Feed",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479505/completion.json",
        "steps": []
      },
      {
        "id": 1069479507,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T20:52:00.000Z",
        "updated_at": "2026-06-18T20:52:00.000Z",
        "title": "🍕Por Que Pizza",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479507.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479507",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUwNz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3b1398cab533e13874546e8f4e2e6d6e7375f8ec.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479507/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479507/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479507/boosts.json",
        "position": 4,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715916,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkxNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--6414c77c0a206bc7d45987b8335318b768e8651f",
          "name": "Andrew Wong",
          "personable_type": "User",
          "title": "Senior Branding Strategist",
          "tagline": null,
          "location": null,
          "created_at": "2026-07-28T20:18:54.985Z",
          "updated_at": "2026-07-28T20:18:54.985Z",
          "email_address": "andrew@honchodesign.com",
          "bio": null,
          "admin": false,
          "owner": false,
          "client": false,
          "employee": false,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBMxkkT4=--0ea74d7e5d39ad2d120da79250b179b7e0b00c44/avatar",
          "can_ping": true,
          "can_manage_projects": true,
          "can_manage_people": true,
          "can_access_timesheet": true,
          "can_access_hill_charts": true
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍕Por Que Pizza",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715938,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
            "name": "Annie Bryan",
            "personable_type": "User",
            "title": "Central Markets Manager",
            "tagline": "To open a store is easy, to keep it open is an art",
            "location": null,
            "created_at": "2026-07-28T20:19:02.202Z",
            "updated_at": "2026-07-28T20:19:02.202Z",
            "email_address": "annie@honchodesign.com",
            "bio": "To open a store is easy, to keep it open is an art",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479507/completion.json",
        "steps": []
      },
      {
        "id": 1069479511,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T23:03:00.000Z",
        "updated_at": "2026-06-18T23:03:00.000Z",
        "title": "🍗Chicken Little",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479511.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479511",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--71a0f540604280ca24702718161859f4189edd6b.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479511/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479511/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479511/boosts.json",
        "position": 5,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍗Chicken Little",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479511/completion.json",
        "steps": []
      },
      {
        "id": 1069479512,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T23:42:00.000Z",
        "updated_at": "2026-06-18T23:42:00.000Z",
        "title": "🍔Dinosaur Burgers",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479512.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479512",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxMj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--96957dace99c0e92c1f64d72bff2fa39100ce984.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479512/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479512/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479512/boosts.json",
        "position": 6,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍔Dinosaur Burgers",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479512/completion.json",
        "steps": []
      },
      {
        "id": 1069479513,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-18T23:44:00.000Z",
        "updated_at": "2026-07-28T20:20:14.284Z",
        "title": "🐷Smokey's House of Pork",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479513.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479513",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--501044ea488133571400c7f9f5c7663d95db7a10.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479513/subscription.json",
        "comments_count": 2,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479513/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479513/boosts.json",
        "position": 7,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🐷Smokey's House of Pork",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479513/completion.json",
        "steps": []
      },
      {
        "id": 1069479516,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-19T00:51:00.000Z",
        "updated_at": "2026-07-28T20:20:15.208Z",
        "title": "🍔Big Kahuna",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479516.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479516",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxNj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--788062ebf861632931e22eb2919458789b9292c7.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479516/subscription.json",
        "comments_count": 1,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479516/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479516/boosts.json",
        "position": 8,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715940,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
          "name": "Jared Davis",
          "personable_type": "User",
          "title": "International Tactics Facilitator",
          "tagline": "Oh, so they have internet on computers now!",
          "location": null,
          "created_at": "2026-07-28T20:19:03.766Z",
          "updated_at": "2026-07-28T20:19:03.766Z",
          "email_address": "jared@honchodesign.com",
          "bio": "Oh, so they have internet on computers now!",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍔Big Kahuna",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715940,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
            "name": "Jared Davis",
            "personable_type": "User",
            "title": "International Tactics Facilitator",
            "tagline": "Oh, so they have internet on computers now!",
            "location": null,
            "created_at": "2026-07-28T20:19:03.766Z",
            "updated_at": "2026-07-28T20:19:03.766Z",
            "email_address": "jared@honchodesign.com",
            "bio": "Oh, so they have internet on computers now!",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479516/completion.json",
        "steps": []
      },
      {
        "id": 1069479518,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-06-19T01:01:00.000Z",
        "updated_at": "2026-07-28T20:20:16.055Z",
        "title": "🍜Who's Up For Some Thai?",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069479518.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069479518",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTUxOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--81731eca24b387ce6a8d025512f4c3d9313d3a23.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479518/subscription.json",
        "comments_count": 1,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479518/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069479518/boosts.json",
        "position": 9,
        "parent": {
          "id": 1069479500,
          "title": "Restaurants in the area to try",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069479500.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069479500"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715938,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
          "name": "Annie Bryan",
          "personable_type": "User",
          "title": "Central Markets Manager",
          "tagline": "To open a store is easy, to keep it open is an art",
          "location": null,
          "created_at": "2026-07-28T20:19:02.202Z",
          "updated_at": "2026-07-28T20:19:02.202Z",
          "email_address": "annie@honchodesign.com",
          "bio": "To open a store is easy, to keep it open is an art",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "🍜Who's Up For Some Thai?",
        "starts_on": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069479518/completion.json",
        "steps": []
      },
      {
        "id": 1069478990,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-03T06:09:00.000Z",
        "updated_at": "2026-05-03T06:09:00.000Z",
        "title": "Start open enrollment",
        "inherits_status": true,
        "type": "Todo",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todos/1069478990.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todos/1069478990",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3ODk5MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--2a325a47dabf62e3c2273b65bffb7b7df25d6c04.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478990/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478990/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958501/recordings/1069478990/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069478979,
          "title": "Health benefits renewal",
          "type": "Todolist",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958501/todolists/1069478979.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958501/todolists/1069478979"
        },
        "bucket": {
          "id": 2085958501,
          "name": "Honcho Design Newsroom",
          "type": "Project"
        },
        "creator": {
          "id": 1049715939,
          "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
          "name": "Cheryl Walters",
          "personable_type": "User",
          "title": "Corporate Integration Director",
          "tagline": "A joke is a very serious thing",
          "location": null,
          "created_at": "2026-07-28T20:19:02.597Z",
          "updated_at": "2026-07-28T20:19:02.597Z",
          "email_address": "cheryl@honchodesign.com",
          "bio": "A joke is a very serious thing",
          "admin": false,
          "owner": false,
          "client": false,
          "employee": true,
          "time_zone": "America/Chicago",
          "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": "Start open enrollment",
        "starts_on": null,
        "due_on": null,
        "assignees": [
          {
            "id": 1049715939,
            "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
            "name": "Cheryl Walters",
            "personable_type": "User",
            "title": "Corporate Integration Director",
            "tagline": "A joke is a very serious thing",
            "location": null,
            "created_at": "2026-07-28T20:19:02.597Z",
            "updated_at": "2026-07-28T20:19:02.597Z",
            "email_address": "cheryl@honchodesign.com",
            "bio": "A joke is a very serious thing",
            "admin": false,
            "owner": false,
            "client": false,
            "employee": true,
            "time_zone": "America/Chicago",
            "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
          }
        ],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/todos/1069478990/completion.json",
        "steps": []
      }
    ]
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/todos/no_due_date.json

Get cards by filter

  • GET /cards/open.json — cards in active columns that are incomplete.
  • GET /cards/completed.json — cards that have been completed.
  • GET /cards/unassigned.json — open cards with no assignees.
  • GET /cards/no_due_date.json — open cards with no due date.
  • GET /cards/not_now.json — cards parked in a project's "Not now" column.

These endpoints are preserved as the canonical API paths; the standalone all-cards web page was removed — the BC5 web app shows these tasks in the combined /tasks report.

Example JSON Response
[
  {
    "bucket": {
      "id": 2085958504,
      "name": "Honcho HQ",
      "type": "Project"
    },
    "cards": [
      {
        "id": 1069479813,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-22T00:47:00.000Z",
        "updated_at": "2026-05-28T17:23:17.234Z",
        "title": "Super Bowl Commercial $$$$$",
        "inherits_status": true,
        "type": "Kanban::Card",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/cards/1069479813.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/cards/1069479813",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTgxMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--a8b9932474cd488852776e831cd3a60b990f275c.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479813/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479813/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479813/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479807,
          "title": "Triage",
          "type": "Kanban::Triage",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/columns/1069479807.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/columns/1069479807"
        },
        "bucket": {
          "id": 2085958504,
          "name": "Honcho HQ",
          "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
        },
        "description": "The stuff of dreams!",
        "description_attachments": [],
        "completed": false,
        "content": "The stuff of dreams!",
        "due_on": "2026-06-09",
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958504/todos/1069479813/completion.json",
        "comment_count": 0,
        "steps": [
          {
            "id": 1069479814,
            "status": "active",
            "visible_to_clients": false,
            "created_at": "2026-05-22T01:42:00.000Z",
            "updated_at": "2026-05-22T01:42:00.000Z",
            "title": "Get budget approval signoffs from CFO",
            "inherits_status": true,
            "type": "Kanban::Step",
            "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/steps/1069479814.json",
            "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/cards/1069479813#__recording_1069479814",
            "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTgxND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--99b24c91e73794e06d0ac4da55d2b4acc888a3b8.json",
            "position": 1,
            "parent": {
              "id": 1069479813,
              "title": "Super Bowl Commercial $$$$$",
              "type": "Kanban::Card",
              "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/cards/1069479813.json",
              "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/cards/1069479813"
            },
            "bucket": {
              "id": 2085958504,
              "name": "Honcho HQ",
              "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
            },
            "completed": false,
            "due_on": "2026-05-31",
            "assignees": [],
            "completion_url": "/195539477/buckets/2085958504/steps/1069479814/completions.json"
          }
        ]
      }
    ]
  },
  {
    "bucket": {
      "id": 2085958505,
      "name": "The Leto Laptop",
      "type": "Project"
    },
    "cards": [
      {
        "id": 1069480041,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-14T21:00:00.000Z",
        "updated_at": "2026-05-28T17:23:29.744Z",
        "title": "New and fancy UI",
        "inherits_status": true,
        "type": "Kanban::Card",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480041.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480041",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDA0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b4c3e9daec4a87607f8e0b9399bbc5bc335e1ee4.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480041/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480041/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480041/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479834,
          "title": "Triage",
          "type": "Kanban::Triage",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/columns/1069479834.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/columns/1069479834"
        },
        "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
        },
        "description": "Design a new and fancy UI",
        "description_attachments": [],
        "completed": false,
        "content": "Design a new and fancy UI",
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958505/todos/1069480041/completion.json",
        "comment_count": 0,
        "steps": [
          {
            "id": 1069480042,
            "status": "active",
            "visible_to_clients": false,
            "created_at": "2026-05-14T21:47:00.000Z",
            "updated_at": "2026-05-14T21:47:00.000Z",
            "title": "Find inspiration",
            "inherits_status": true,
            "type": "Kanban::Step",
            "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/steps/1069480042.json",
            "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480041#__recording_1069480042",
            "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDA0Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--ac919964135c88e0b8d853cf2c2968095f8ce46a.json",
            "position": 1,
            "parent": {
              "id": 1069480041,
              "title": "New and fancy UI",
              "type": "Kanban::Card",
              "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480041.json",
              "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480041"
            },
            "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
            },
            "completed": false,
            "due_on": "2026-06-01",
            "assignees": [
              {
                "id": 1049715931,
                "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--0c0826b2c47fc879d171cb99aa564d38e5a54a67",
                "name": "Tashia Hughes",
                "personable_type": "User",
                "title": "District Integration Architect",
                "tagline": null,
                "location": null,
                "created_at": "2026-05-28T17:22:28.453Z",
                "updated_at": "2026-05-28T17:22:28.453Z",
                "email_address": "tashia@honchodesign.com",
                "bio": null,
                "admin": false,
                "owner": false,
                "client": false,
                "employee": false,
                "time_zone": "America/Chicago",
                "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNtkkT4=--b72a5df90f237e00570273b726a82176287186e4/avatar",
                "can_ping": true,
                "can_manage_projects": true,
                "can_manage_people": true,
                "can_access_timesheet": true,
                "can_access_hill_charts": true
              }
            ],
            "completion_url": "/195539477/buckets/2085958505/steps/1069480042/completions.json"
          }
        ]
      },
      {
        "id": 1069480291,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-20T04:30:19.864Z",
        "updated_at": "2026-07-20T04:30:19.882Z",
        "title": "Order anniversary swag",
        "inherits_status": true,
        "type": "Kanban::Card",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480291.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480291",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDI5MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--0ae2d6c6a02890da22ebfa8513344e9ee62fcd15.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480291/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480291/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480291/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479837,
          "title": "In progress",
          "type": "Kanban::Column",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/columns/1069479837.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/columns/1069479837"
        },
        "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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": null,
        "due_on": "2026-07-01",
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958505/todos/1069480291/completion.json",
        "comment_count": 0,
        "steps": []
      }
    ]
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/cards/open.json
[
  {
    "bucket": {
      "id": 2085958505,
      "name": "The Leto Laptop",
      "type": "Project"
    },
    "cards": [
      {
        "id": 1069480289,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-20T04:30:19.283Z",
        "updated_at": "2026-07-20T04:30:19.651Z",
        "title": "Collect launch-party RSVPs",
        "inherits_status": true,
        "type": "Kanban::Card",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480289.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480289",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDI4OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--f6c3d06be153ab51f1c2a0a04d7af6fa4fdbe96f.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480289/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480289/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480289/boosts.json",
        "parent": {
          "id": 1069479836,
          "title": "Figuring it out",
          "type": "Kanban::Column",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/columns/1069479836.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/columns/1069479836"
        },
        "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
        },
        "description": "",
        "description_attachments": [],
        "completed": true,
        "completion": {
          "created_at": "2026-07-20T04:30:19.568Z",
          "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
          }
        },
        "content": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958505/todos/1069480289/completion.json",
        "comment_count": 0,
        "steps": []
      }
    ]
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/cards/completed.json
[
  {
    "bucket": {
      "id": 2085958504,
      "name": "Honcho HQ",
      "type": "Project"
    },
    "cards": [
      {
        "id": 1069479813,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-22T00:47:00.000Z",
        "updated_at": "2026-05-28T17:23:17.234Z",
        "title": "Super Bowl Commercial $$$$$",
        "inherits_status": true,
        "type": "Kanban::Card",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/cards/1069479813.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/cards/1069479813",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTgxMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--a8b9932474cd488852776e831cd3a60b990f275c.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479813/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479813/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479813/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479807,
          "title": "Triage",
          "type": "Kanban::Triage",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/columns/1069479807.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/columns/1069479807"
        },
        "bucket": {
          "id": 2085958504,
          "name": "Honcho HQ",
          "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
        },
        "description": "The stuff of dreams!",
        "description_attachments": [],
        "completed": false,
        "content": "The stuff of dreams!",
        "due_on": "2026-06-09",
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958504/todos/1069479813/completion.json",
        "comment_count": 0,
        "steps": [
          {
            "id": 1069479814,
            "status": "active",
            "visible_to_clients": false,
            "created_at": "2026-05-22T01:42:00.000Z",
            "updated_at": "2026-05-22T01:42:00.000Z",
            "title": "Get budget approval signoffs from CFO",
            "inherits_status": true,
            "type": "Kanban::Step",
            "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/steps/1069479814.json",
            "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/cards/1069479813#__recording_1069479814",
            "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTgxND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--99b24c91e73794e06d0ac4da55d2b4acc888a3b8.json",
            "position": 1,
            "parent": {
              "id": 1069479813,
              "title": "Super Bowl Commercial $$$$$",
              "type": "Kanban::Card",
              "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/cards/1069479813.json",
              "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/cards/1069479813"
            },
            "bucket": {
              "id": 2085958504,
              "name": "Honcho HQ",
              "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
            },
            "completed": false,
            "due_on": "2026-05-31",
            "assignees": [],
            "completion_url": "/195539477/buckets/2085958504/steps/1069479814/completions.json"
          }
        ]
      }
    ]
  },
  {
    "bucket": {
      "id": 2085958505,
      "name": "The Leto Laptop",
      "type": "Project"
    },
    "cards": [
      {
        "id": 1069480041,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-14T21:00:00.000Z",
        "updated_at": "2026-05-28T17:23:29.744Z",
        "title": "New and fancy UI",
        "inherits_status": true,
        "type": "Kanban::Card",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480041.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480041",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDA0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b4c3e9daec4a87607f8e0b9399bbc5bc335e1ee4.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480041/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480041/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480041/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479834,
          "title": "Triage",
          "type": "Kanban::Triage",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/columns/1069479834.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/columns/1069479834"
        },
        "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
        },
        "description": "Design a new and fancy UI",
        "description_attachments": [],
        "completed": false,
        "content": "Design a new and fancy UI",
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958505/todos/1069480041/completion.json",
        "comment_count": 0,
        "steps": [
          {
            "id": 1069480042,
            "status": "active",
            "visible_to_clients": false,
            "created_at": "2026-05-14T21:47:00.000Z",
            "updated_at": "2026-05-14T21:47:00.000Z",
            "title": "Find inspiration",
            "inherits_status": true,
            "type": "Kanban::Step",
            "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/steps/1069480042.json",
            "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480041#__recording_1069480042",
            "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDA0Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--ac919964135c88e0b8d853cf2c2968095f8ce46a.json",
            "position": 1,
            "parent": {
              "id": 1069480041,
              "title": "New and fancy UI",
              "type": "Kanban::Card",
              "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480041.json",
              "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480041"
            },
            "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
            },
            "completed": false,
            "due_on": "2026-06-01",
            "assignees": [
              {
                "id": 1049715931,
                "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--0c0826b2c47fc879d171cb99aa564d38e5a54a67",
                "name": "Tashia Hughes",
                "personable_type": "User",
                "title": "District Integration Architect",
                "tagline": null,
                "location": null,
                "created_at": "2026-05-28T17:22:28.453Z",
                "updated_at": "2026-05-28T17:22:28.453Z",
                "email_address": "tashia@honchodesign.com",
                "bio": null,
                "admin": false,
                "owner": false,
                "client": false,
                "employee": false,
                "time_zone": "America/Chicago",
                "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNtkkT4=--b72a5df90f237e00570273b726a82176287186e4/avatar",
                "can_ping": true,
                "can_manage_projects": true,
                "can_manage_people": true,
                "can_access_timesheet": true,
                "can_access_hill_charts": true
              }
            ],
            "completion_url": "/195539477/buckets/2085958505/steps/1069480042/completions.json"
          }
        ]
      },
      {
        "id": 1069480291,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-20T04:30:19.864Z",
        "updated_at": "2026-07-20T04:30:19.882Z",
        "title": "Order anniversary swag",
        "inherits_status": true,
        "type": "Kanban::Card",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480291.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480291",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDI5MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--0ae2d6c6a02890da22ebfa8513344e9ee62fcd15.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480291/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480291/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480291/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479837,
          "title": "In progress",
          "type": "Kanban::Column",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/columns/1069479837.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/columns/1069479837"
        },
        "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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": null,
        "due_on": "2026-07-01",
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958505/todos/1069480291/completion.json",
        "comment_count": 0,
        "steps": []
      }
    ]
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/cards/unassigned.json
[
  {
    "bucket": {
      "id": 2085958505,
      "name": "The Leto Laptop",
      "type": "Project"
    },
    "cards": [
      {
        "id": 1069480041,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-14T21:00:00.000Z",
        "updated_at": "2026-05-28T17:23:29.744Z",
        "title": "New and fancy UI",
        "inherits_status": true,
        "type": "Kanban::Card",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480041.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480041",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDA0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b4c3e9daec4a87607f8e0b9399bbc5bc335e1ee4.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480041/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480041/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480041/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479834,
          "title": "Triage",
          "type": "Kanban::Triage",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/columns/1069479834.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/columns/1069479834"
        },
        "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
        },
        "description": "Design a new and fancy UI",
        "description_attachments": [],
        "completed": false,
        "content": "Design a new and fancy UI",
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958505/todos/1069480041/completion.json",
        "comment_count": 0,
        "steps": [
          {
            "id": 1069480042,
            "status": "active",
            "visible_to_clients": false,
            "created_at": "2026-05-14T21:47:00.000Z",
            "updated_at": "2026-05-14T21:47:00.000Z",
            "title": "Find inspiration",
            "inherits_status": true,
            "type": "Kanban::Step",
            "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/steps/1069480042.json",
            "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480041#__recording_1069480042",
            "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDA0Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--ac919964135c88e0b8d853cf2c2968095f8ce46a.json",
            "position": 1,
            "parent": {
              "id": 1069480041,
              "title": "New and fancy UI",
              "type": "Kanban::Card",
              "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480041.json",
              "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480041"
            },
            "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
            },
            "completed": false,
            "due_on": "2026-06-01",
            "assignees": [
              {
                "id": 1049715931,
                "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--0c0826b2c47fc879d171cb99aa564d38e5a54a67",
                "name": "Tashia Hughes",
                "personable_type": "User",
                "title": "District Integration Architect",
                "tagline": null,
                "location": null,
                "created_at": "2026-05-28T17:22:28.453Z",
                "updated_at": "2026-05-28T17:22:28.453Z",
                "email_address": "tashia@honchodesign.com",
                "bio": null,
                "admin": false,
                "owner": false,
                "client": false,
                "employee": false,
                "time_zone": "America/Chicago",
                "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNtkkT4=--b72a5df90f237e00570273b726a82176287186e4/avatar",
                "can_ping": true,
                "can_manage_projects": true,
                "can_manage_people": true,
                "can_access_timesheet": true,
                "can_access_hill_charts": true
              }
            ],
            "completion_url": "/195539477/buckets/2085958505/steps/1069480042/completions.json"
          }
        ]
      }
    ]
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/cards/no_due_date.json
[
  {
    "bucket": {
      "id": 2085958505,
      "name": "The Leto Laptop",
      "type": "Project"
    },
    "cards": [
      {
        "id": 1069480290,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-07-20T04:30:19.787Z",
        "updated_at": "2026-07-20T04:30:19.798Z",
        "title": "Translate the site to French",
        "inherits_status": true,
        "type": "Kanban::Card",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480290.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480290",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDI5MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--01c7c586d5f3a3e368c70860a5055ff3ca520d55.json",
        "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480290/subscription.json",
        "comments_count": 0,
        "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480290/comments.json",
        "boosts_count": 0,
        "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480290/boosts.json",
        "position": 1,
        "parent": {
          "id": 1069479835,
          "title": "Not now",
          "type": "Kanban::NotNowColumn",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/columns/1069479835.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/columns/1069479835"
        },
        "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
        },
        "description": "",
        "description_attachments": [],
        "completed": false,
        "content": null,
        "due_on": null,
        "assignees": [],
        "completion_subscribers": [],
        "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958505/todos/1069480290/completion.json",
        "comment_count": 0,
        "steps": []
      }
    ]
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/cards/not_now.json

Flat recording lists

These endpoints return a flat array of recording objects across every project the user can access. Each entry uses the recording's own JSON shape (e.g. a to-do, a kanban card, a message, a document, an upload), and includes the embedding bucket so clients can render project context without an additional fetch.

Get overdue to-dos

  • GET /todos/overdue.json — to-dos with a due_on date in the past, sorted oldest-first by due date.

This endpoint is preserved as the canonical API path; the standalone all-to-dos web page was removed — the BC5 web app shows these tasks in the combined /tasks report.

Example JSON Response
[
  {
    "id": 1069479801,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-21T22:36:00.000Z",
    "updated_at": "2026-05-21T22:36:00.000Z",
    "title": "Why isn't this done yet?",
    "inherits_status": true,
    "type": "Todo",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958504/todos/1069479801.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/todos/1069479801",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTgwMT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--d7ef250095e7127009bd730d5d13ba76b7f8038b.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479801/subscription.json",
    "comments_count": 0,
    "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479801/comments.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479801/boosts.json",
    "position": 1,
    "parent": {
      "id": 1069479800,
      "title": "TV Ad",
      "type": "Todolist",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958504/todolists/1069479800.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/todolists/1069479800"
    },
    "bucket": {
      "id": 2085958504,
      "name": "Honcho HQ",
      "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
    },
    "description": "",
    "description_attachments": [],
    "completed": false,
    "content": "Why isn't this done yet?",
    "starts_on": null,
    "due_on": "2026-05-25",
    "assignees": [
      {
        "id": 1049715938,
        "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
        "name": "Annie Bryan",
        "personable_type": "User",
        "title": "Central Markets Manager",
        "tagline": "To open a store is easy, to keep it open is an art",
        "location": null,
        "created_at": "2026-05-28T17:22:29.167Z",
        "updated_at": "2026-05-28T17:22:29.167Z",
        "email_address": "annie@honchodesign.com",
        "bio": "To open a store is easy, to keep it open is an art",
        "admin": false,
        "owner": false,
        "client": false,
        "employee": true,
        "time_zone": "America/Chicago",
        "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
      },
      {
        "id": 1049715939,
        "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--91bd4d39e2f4af1d814a0b480e809d15a51df239",
        "name": "Cheryl Walters",
        "personable_type": "User",
        "title": "Corporate Integration Director",
        "tagline": "A joke is a very serious thing",
        "location": null,
        "created_at": "2026-05-28T17:22:29.505Z",
        "updated_at": "2026-05-28T17:22:29.505Z",
        "email_address": "cheryl@honchodesign.com",
        "bio": "A joke is a very serious thing",
        "admin": false,
        "owner": false,
        "client": false,
        "employee": true,
        "time_zone": "America/Chicago",
        "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBONkkT4=--b57b5a44335d4c3ba1a2585abd6e5c7e4c85fdd6/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
      },
      {
        "id": 1049715940,
        "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
        "name": "Jared Davis",
        "personable_type": "User",
        "title": "International Tactics Facilitator",
        "tagline": "Oh, so they have internet on computers now!",
        "location": null,
        "created_at": "2026-05-28T17:22:29.827Z",
        "updated_at": "2026-05-28T17:22:29.827Z",
        "email_address": "jared@honchodesign.com",
        "bio": "Oh, so they have internet on computers now!",
        "admin": false,
        "owner": false,
        "client": false,
        "employee": true,
        "time_zone": "America/Chicago",
        "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
      },
      {
        "id": 1049715941,
        "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
        "name": "Jennifer Hemmersmith Young",
        "personable_type": "User",
        "title": "Lead Configuration Manager",
        "tagline": null,
        "location": null,
        "created_at": "2026-05-28T17:22:30.128Z",
        "updated_at": "2026-05-28T17:22:30.128Z",
        "email_address": "jennifer@honchodesign.com",
        "bio": null,
        "admin": false,
        "owner": false,
        "client": false,
        "employee": true,
        "time_zone": "America/Chicago",
        "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
      },
      {
        "id": 1049715942,
        "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0Mj9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--9e2080944c2f4ef95314dc6118f33af5972932a1",
        "name": "Josh Fiske",
        "personable_type": "User",
        "title": "Future Paradigm Planner",
        "tagline": null,
        "location": null,
        "created_at": "2026-05-28T17:22:30.459Z",
        "updated_at": "2026-05-28T17:22:30.459Z",
        "email_address": "josh@honchodesign.com",
        "bio": null,
        "admin": false,
        "owner": false,
        "client": false,
        "employee": true,
        "time_zone": "America/Chicago",
        "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOZkkT4=--b8553b154990a1112ab6275b749296c4a3b56334/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
      },
      {
        "id": 1049715943,
        "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--b0c6d5901972863f2e810d0076490e014fe01bdd",
        "name": "Nicole Katz",
        "personable_type": "User",
        "title": "Legacy Usability Planner",
        "tagline": null,
        "location": null,
        "created_at": "2026-05-28T17:22:30.773Z",
        "updated_at": "2026-05-28T17:22:30.773Z",
        "email_address": "nicole@honchodesign.com",
        "bio": null,
        "admin": false,
        "owner": false,
        "client": false,
        "employee": true,
        "time_zone": "America/Chicago",
        "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOdkkT4=--1d2b80e583133f93afe008f88166b674fc0287a4/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
      },
      {
        "id": 1049715944,
        "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0ND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--5c49e7f857f7a2aea319ae399f8b00eb63123ef9",
        "name": "Steve Marsh",
        "personable_type": "User",
        "title": "Legacy Directives Strategist",
        "tagline": "You can do it!",
        "location": null,
        "created_at": "2026-05-28T17:22:31.108Z",
        "updated_at": "2026-05-28T17:22:31.108Z",
        "email_address": "steve@honchodesign.com",
        "bio": "You can do it!",
        "admin": false,
        "owner": false,
        "client": false,
        "employee": true,
        "time_zone": "America/Chicago",
        "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOhkkT4=--b169e35b345bcc26eca6964b7ef7de2c16b6f238/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
      },
      {
        "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
      }
    ],
    "completion_subscribers": [],
    "completion_url": "https://3.basecampapi.com/195539477/todos/1069479801/completion.json",
    "steps": []
  },
  {
    "id": 1069479861,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-04-15T06:26:00.000Z",
    "updated_at": "2026-04-15T06:26:00.000Z",
    "title": "Make to-do lists",
    "inherits_status": true,
    "type": "Todo",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958505/todos/1069479861.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/todos/1069479861",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTg2MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--898d09d82b41453441a5f04a6c7550c439cdaeeb.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069479861/subscription.json",
    "comments_count": 0,
    "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069479861/comments.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069479861/boosts.json",
    "position": 2,
    "parent": {
      "id": 1069479829,
      "title": "To-dos",
      "type": "Todoset",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958505/todosets/1069479829.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/todosets/1069479829"
    },
    "bucket": {
      "id": 2085958505,
      "name": "The Leto Laptop",
      "type": "Project"
    },
    "creator": {
      "id": 1049715930,
      "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzMD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--322099b137f9e0b6bc944b5b9fe7a2692da94814",
      "name": "Sharon Bradford",
      "personable_type": "User",
      "title": "Principal Branding Administrator",
      "tagline": null,
      "location": null,
      "created_at": "2026-05-28T17:22:28.137Z",
      "updated_at": "2026-05-28T17:22:28.137Z",
      "email_address": "sharon@honchodesign.com",
      "bio": null,
      "admin": false,
      "owner": false,
      "client": false,
      "employee": false,
      "time_zone": "America/Chicago",
      "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNpkkT4=--789594e5e542ab99e467a51c9dec0a9035abc0e0/avatar",
      "can_ping": true,
      "can_manage_projects": true,
      "can_manage_people": true,
      "can_access_timesheet": true,
      "can_access_hill_charts": true
    },
    "description": "",
    "description_attachments": [],
    "completed": false,
    "content": "Make to-do lists",
    "starts_on": null,
    "due_on": "2026-05-29",
    "assignees": [
      {
        "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
      }
    ],
    "completion_subscribers": [],
    "completion_url": "https://3.basecampapi.com/195539477/todos/1069479861/completion.json",
    "steps": []
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/todos/overdue.json

Get overdue cards

  • GET /cards/overdue.json — cards with a due_on date in the past, sorted oldest-first by due date.

This endpoint is preserved as the canonical API path; the standalone all-cards web page was removed — the BC5 web app shows these tasks in the combined /tasks report.

Example JSON Response
[
  {
    "id": 1069479813,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-22T00:47:00.000Z",
    "updated_at": "2026-05-28T17:23:17.234Z",
    "title": "Super Bowl Commercial $$$$$",
    "inherits_status": true,
    "type": "Kanban::Card",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/cards/1069479813.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/cards/1069479813",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTgxMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--a8b9932474cd488852776e831cd3a60b990f275c.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479813/subscription.json",
    "comments_count": 0,
    "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479813/comments.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958504/recordings/1069479813/boosts.json",
    "position": 1,
    "parent": {
      "id": 1069479807,
      "title": "Triage",
      "type": "Kanban::Triage",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/columns/1069479807.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/columns/1069479807"
    },
    "bucket": {
      "id": 2085958504,
      "name": "Honcho HQ",
      "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
    },
    "description": "The stuff of dreams!",
    "description_attachments": [],
    "completed": false,
    "content": "The stuff of dreams!",
    "due_on": "2026-06-09",
    "assignees": [],
    "completion_subscribers": [],
    "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958504/todos/1069479813/completion.json",
    "comment_count": 0,
    "steps": [
      {
        "id": 1069479814,
        "status": "active",
        "visible_to_clients": false,
        "created_at": "2026-05-22T01:42:00.000Z",
        "updated_at": "2026-05-22T01:42:00.000Z",
        "title": "Get budget approval signoffs from CFO",
        "inherits_status": true,
        "type": "Kanban::Step",
        "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/steps/1069479814.json",
        "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/cards/1069479813#__recording_1069479814",
        "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTgxND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--99b24c91e73794e06d0ac4da55d2b4acc888a3b8.json",
        "position": 1,
        "parent": {
          "id": 1069479813,
          "title": "Super Bowl Commercial $$$$$",
          "type": "Kanban::Card",
          "url": "https://3.basecampapi.com/195539477/buckets/2085958504/card_tables/cards/1069479813.json",
          "app_url": "https://3.basecamp.com/195539477/buckets/2085958504/card_tables/cards/1069479813"
        },
        "bucket": {
          "id": 2085958504,
          "name": "Honcho HQ",
          "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
        },
        "completed": false,
        "due_on": "2026-05-31",
        "assignees": [],
        "completion_url": "/195539477/buckets/2085958504/steps/1069479814/completions.json"
      }
    ]
  },
  {
    "id": 1069480291,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-07-20T04:30:19.864Z",
    "updated_at": "2026-07-20T04:30:19.882Z",
    "title": "Order anniversary swag",
    "inherits_status": true,
    "type": "Kanban::Card",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/cards/1069480291.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/cards/1069480291",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDI5MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--0ae2d6c6a02890da22ebfa8513344e9ee62fcd15.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480291/subscription.json",
    "comments_count": 0,
    "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480291/comments.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480291/boosts.json",
    "position": 1,
    "parent": {
      "id": 1069479837,
      "title": "In progress",
      "type": "Kanban::Column",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958505/card_tables/columns/1069479837.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/card_tables/columns/1069479837"
    },
    "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
    },
    "description": "",
    "description_attachments": [],
    "completed": false,
    "content": null,
    "due_on": "2026-07-01",
    "assignees": [],
    "completion_subscribers": [],
    "completion_url": "https://3.basecampapi.com/195539477/buckets/2085958505/todos/1069480291/completion.json",
    "comment_count": 0,
    "steps": []
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/cards/overdue.json

List messages

Example JSON Response
[
  {
    "id": 1069479647,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-26T22:18:00.000Z",
    "updated_at": "2026-05-28T17:23:08.407Z",
    "title": "Home screens at Honcho",
    "inherits_status": true,
    "type": "Message",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958502/messages/1069479647.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/messages/1069479647",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTY0Nz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--1e7b557a468f1a9c69b35710eafa00a0b8246c7d.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479647/subscription.json",
    "comments_count": 17,
    "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479647/comments.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479647/boosts.json",
    "parent": {
      "id": 1069478954,
      "title": "Message Board",
      "type": "Message::Board",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958502/message_boards/1069478954.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/message_boards/1069478954"
    },
    "bucket": {
      "id": 2085958502,
      "name": "Honcho Design Newsroom",
      "type": "Project"
    },
    "creator": {
      "id": 1049715940,
      "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
      "name": "Jared Davis",
      "personable_type": "User",
      "title": "International Tactics Facilitator",
      "tagline": "Oh, so they have internet on computers now!",
      "location": null,
      "created_at": "2026-05-28T17:22:29.827Z",
      "updated_at": "2026-05-28T17:22:29.827Z",
      "email_address": "jared@honchodesign.com",
      "bio": "Oh, so they have internet on computers now!",
      "admin": false,
      "owner": false,
      "client": false,
      "employee": true,
      "time_zone": "America/Chicago",
      "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
    },
    "content": "We thought it would be cool to see how we all have our home screens on our phones organized. Please add your homescreen if you'd like me to include it in a blog post this Friday. Thanks!",
    "content_attachments": [],
    "subject": "Home screens at Honcho"
  },
  {
    "id": 1069479624,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-25T22:32:00.000Z",
    "updated_at": "2026-05-28T17:23:06.854Z",
    "title": "Is it possible to have an entire conversation with emoji?",
    "inherits_status": true,
    "type": "Message",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958502/messages/1069479624.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/messages/1069479624",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTYyND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--3fcbf0e83ac15e60b9c593885ed034dff88583f3.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479624/subscription.json",
    "comments_count": 22,
    "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479624/comments.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479624/boosts.json",
    "parent": {
      "id": 1069478954,
      "title": "Message Board",
      "type": "Message::Board",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958502/message_boards/1069478954.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/message_boards/1069478954"
    },
    "bucket": {
      "id": 2085958502,
      "name": "Honcho Design Newsroom",
      "type": "Project"
    },
    "creator": {
      "id": 1049715940,
      "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
      "name": "Jared Davis",
      "personable_type": "User",
      "title": "International Tactics Facilitator",
      "tagline": "Oh, so they have internet on computers now!",
      "location": null,
      "created_at": "2026-05-28T17:22:29.827Z",
      "updated_at": "2026-05-28T17:22:29.827Z",
      "email_address": "jared@honchodesign.com",
      "bio": "Oh, so they have internet on computers now!",
      "admin": false,
      "owner": false,
      "client": false,
      "employee": true,
      "time_zone": "America/Chicago",
      "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
    },
    "content": "❓ ❗",
    "content_attachments": [],
    "subject": "Is it possible to have an entire conversation with emoji?"
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/messages.json

List comments

Example JSON Response
[
  {
    "id": 1069479680,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-27T06:31:00.000Z",
    "updated_at": "2026-05-27T06:31:00.000Z",
    "title": "Re: Home screens at Honcho",
    "inherits_status": true,
    "type": "Comment",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958502/comments/1069479680.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/messages/1069479647#__recording_1069479680",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTY4MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--9cf622782de9b2f260c9645ee1a316ecf2ea10e8.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479680/boosts.json",
    "parent": {
      "id": 1069479647,
      "title": "Home screens at Honcho",
      "type": "Message",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958502/messages/1069479647.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/messages/1069479647"
    },
    "bucket": {
      "id": 2085958502,
      "name": "Honcho Design Newsroom",
      "type": "Project"
    },
    "creator": {
      "id": 1049715923,
      "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyMz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--cd47d2c8e0331392dba60ca41aec78611b6f2f2e",
      "name": "Jerry Gibson",
      "personable_type": "User",
      "title": "Principal Configuration Planner",
      "tagline": null,
      "location": null,
      "created_at": "2026-05-28T17:22:25.855Z",
      "updated_at": "2026-05-28T17:22:25.855Z",
      "email_address": "jerry@honchodesign.com",
      "bio": null,
      "admin": false,
      "owner": false,
      "client": false,
      "employee": false,
      "time_zone": "America/Chicago",
      "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNNkkT4=--e3c2676dde30e7c13f87642e3a3dd46ad657f731/avatar",
      "can_ping": true,
      "can_manage_projects": true,
      "can_manage_people": true,
      "can_access_timesheet": true,
      "can_access_hill_charts": true
    },
    "content": "- <bc-attachment sgid=\"BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiL2dpZDovL2JjMy9BdHRhY2htZW50LzEwNDY2Mjg0NjQ_ZXhwaXJlc19pbgY7AFRJIghwdXIGOwBUSSIPYXR0YWNoYWJsZQY7AFQ=--c72fa895f25793cf87e1f61001155d4ff9a7e3e8\" content-type=\"image/avif\" url=\"https://3.basecampapi.com/195539477/blobs/f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9/previews/full\" href=\"https://storage.3.basecamp.com/195539477/blobs/f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9/download/home_screen_17\" filename=\"home_screen_17\" filesize=\"19738\" width=\"394\" height=\"700\" previewable=\"true\" data-bridge-previewable=\"true\" dir=\"auto\"><figure>\n    <img srcset=\"https://3.basecampapi.com/195539477/blobs/f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9/previews/full?dppx=2 2x, https://3.basecampapi.com/195539477/blobs/f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9/previews/full?dppx=1 1x, https://3.basecampapi.com/195539477/blobs/f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9/previews/full?dppx=3 3x, https://3.basecampapi.com/195539477/blobs/f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9/previews/full?dppx=4 4x\" loading=\"eager\" src=\"https://3.basecampapi.com/195539477/blobs/f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9/previews/full\">\n  <figcaption>\n    home_screen_17\n  </figcaption>\n</figure></bc-attachment>",
    "content_attachments": [
      {
        "id": 1046628464,
        "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiL2dpZDovL2JjMy9BdHRhY2htZW50LzEwNDY2Mjg0NjQ_ZXhwaXJlc19pbgY7AFRJIghwdXIGOwBUSSIPYXR0YWNoYWJsZQY7AFQ=--c72fa895f25793cf87e1f61001155d4ff9a7e3e8",
        "sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiL2dpZDovL2JjMy9BdHRhY2htZW50LzEwNDY2Mjg0NjQ_ZXhwaXJlc19pbgY7AFRJIghwdXIGOwBUSSIPYXR0YWNoYWJsZQY7AFQ=--c72fa895f25793cf87e1f61001155d4ff9a7e3e8",
        "status_url": "https://3.basecampapi.com/195539477/attachments/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiL2dpZDovL2JjMy9BdHRhY2htZW50LzEwNDY2Mjg0NjQ_ZXhwaXJlc19pbgY7AFRJIghwdXIGOwBUSSIPYXR0YWNoYWJsZQY7AFQ=--c72fa895f25793cf87e1f61001155d4ff9a7e3e8.json",
        "caption": null,
        "byte_size": 19738,
        "content_type": "image/avif",
        "width": 394,
        "height": 700,
        "key": "f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9",
        "filename": "home_screen_17",
        "download_url": "https://storage.3.basecamp.com/195539477/blobs/f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9/download/home_screen_17",
        "previewable": true,
        "preview_url": "https://3.basecampapi.com/195539477/blobs/f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9/previews/full",
        "thumbnail_url": "https://3.basecampapi.com/195539477/blobs/f0a5ba5dc32559cd4760f83b6bbf0d0fbc1a74b9/previews/card"
      }
    ]
  },
  {
    "id": 1069479678,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-27T06:27:00.000Z",
    "updated_at": "2026-05-27T06:27:00.000Z",
    "title": "Re: Home screens at Honcho",
    "inherits_status": true,
    "type": "Comment",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958502/comments/1069479678.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/messages/1069479647#__recording_1069479678",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTY3OD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--d52fd814ed380d2c26da8656fcad43edc15cfd77.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479678/boosts.json",
    "parent": {
      "id": 1069479647,
      "title": "Home screens at Honcho",
      "type": "Message",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958502/messages/1069479647.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/messages/1069479647"
    },
    "bucket": {
      "id": 2085958502,
      "name": "Honcho Design Newsroom",
      "type": "Project"
    },
    "creator": {
      "id": 1049715941,
      "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--eaa5611b844193684f168e562045ddad5b56e397",
      "name": "Jennifer Hemmersmith Young",
      "personable_type": "User",
      "title": "Lead Configuration Manager",
      "tagline": null,
      "location": null,
      "created_at": "2026-05-28T17:22:30.128Z",
      "updated_at": "2026-05-28T17:22:30.128Z",
      "email_address": "jennifer@honchodesign.com",
      "bio": null,
      "admin": false,
      "owner": false,
      "client": false,
      "employee": true,
      "time_zone": "America/Chicago",
      "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOVkkT4=--33e3fc268c87411378691c71b6f13658e0b40967/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
    },
    "content": "- <bc-attachment sgid=\"BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiL2dpZDovL2JjMy9BdHRhY2htZW50LzEwNDY2Mjg0NjM_ZXhwaXJlc19pbgY7AFRJIghwdXIGOwBUSSIPYXR0YWNoYWJsZQY7AFQ=--25243025d64b688e0c63b8666c35cfcfc508de5b\" content-type=\"image/avif\" url=\"https://3.basecampapi.com/195539477/blobs/ad1a8965b79a5f650f77ce2bb903030da98e48b2/previews/full\" href=\"https://storage.3.basecamp.com/195539477/blobs/ad1a8965b79a5f650f77ce2bb903030da98e48b2/download/home_screen_16\" filename=\"home_screen_16\" filesize=\"103823\" width=\"394\" height=\"700\" previewable=\"true\" data-bridge-previewable=\"true\" dir=\"auto\"><figure>\n    <img srcset=\"https://3.basecampapi.com/195539477/blobs/ad1a8965b79a5f650f77ce2bb903030da98e48b2/previews/full?dppx=2 2x, https://3.basecampapi.com/195539477/blobs/ad1a8965b79a5f650f77ce2bb903030da98e48b2/previews/full?dppx=1 1x, https://3.basecampapi.com/195539477/blobs/ad1a8965b79a5f650f77ce2bb903030da98e48b2/previews/full?dppx=3 3x, https://3.basecampapi.com/195539477/blobs/ad1a8965b79a5f650f77ce2bb903030da98e48b2/previews/full?dppx=4 4x\" loading=\"eager\" src=\"https://3.basecampapi.com/195539477/blobs/ad1a8965b79a5f650f77ce2bb903030da98e48b2/previews/full\">\n  <figcaption>\n    home_screen_16\n  </figcaption>\n</figure></bc-attachment>",
    "content_attachments": [
      {
        "id": 1046628463,
        "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiL2dpZDovL2JjMy9BdHRhY2htZW50LzEwNDY2Mjg0NjM_ZXhwaXJlc19pbgY7AFRJIghwdXIGOwBUSSIPYXR0YWNoYWJsZQY7AFQ=--25243025d64b688e0c63b8666c35cfcfc508de5b",
        "sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiL2dpZDovL2JjMy9BdHRhY2htZW50LzEwNDY2Mjg0NjM_ZXhwaXJlc19pbgY7AFRJIghwdXIGOwBUSSIPYXR0YWNoYWJsZQY7AFQ=--25243025d64b688e0c63b8666c35cfcfc508de5b",
        "status_url": "https://3.basecampapi.com/195539477/attachments/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiL2dpZDovL2JjMy9BdHRhY2htZW50LzEwNDY2Mjg0NjM_ZXhwaXJlc19pbgY7AFRJIghwdXIGOwBUSSIPYXR0YWNoYWJsZQY7AFQ=--25243025d64b688e0c63b8666c35cfcfc508de5b.json",
        "caption": null,
        "byte_size": 103823,
        "content_type": "image/avif",
        "width": 394,
        "height": 700,
        "key": "ad1a8965b79a5f650f77ce2bb903030da98e48b2",
        "filename": "home_screen_16",
        "download_url": "https://storage.3.basecamp.com/195539477/blobs/ad1a8965b79a5f650f77ce2bb903030da98e48b2/download/home_screen_16",
        "previewable": true,
        "preview_url": "https://3.basecampapi.com/195539477/blobs/ad1a8965b79a5f650f77ce2bb903030da98e48b2/previews/full",
        "thumbnail_url": "https://3.basecampapi.com/195539477/blobs/ad1a8965b79a5f650f77ce2bb903030da98e48b2/previews/card"
      }
    ]
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/comments.json

List check-ins

Example JSON Response
[
  {
    "id": 1069479984,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-23T21:20:00.000Z",
    "updated_at": "2026-05-23T21:20:00.000Z",
    "title": "Answer to “What did you work on today?”",
    "inherits_status": true,
    "type": "Question::Answer",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958505/question_answers/1069479984.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/question_answers/1069479984",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTk4ND9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--9b0659ad5522fb41be7c9bbfe41d316f9eb5faf7.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069479984/subscription.json",
    "comments_count": 0,
    "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069479984/comments.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069479984/boosts.json",
    "parent": {
      "id": 1069479853,
      "title": "What did you work on today?",
      "type": "Question",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958505/questions/1069479853.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/questions/1069479853"
    },
    "bucket": {
      "id": 2085958505,
      "name": "The Leto Laptop",
      "type": "Project"
    },
    "creator": {
      "id": 1049715940,
      "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTk0MD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--8a036dc6e0dee6b7db74851189b981fe69f4172d",
      "name": "Jared Davis",
      "personable_type": "User",
      "title": "International Tactics Facilitator",
      "tagline": "Oh, so they have internet on computers now!",
      "location": null,
      "created_at": "2026-05-28T17:22:29.827Z",
      "updated_at": "2026-05-28T17:22:29.827Z",
      "email_address": "jared@honchodesign.com",
      "bio": "Oh, so they have internet on computers now!",
      "admin": false,
      "owner": false,
      "client": false,
      "employee": true,
      "time_zone": "America/Chicago",
      "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBORkkT4=--2667d9ced3ec021946197cbb6c3083f0f95f3b6a/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
    },
    "content": "Prototype is done, components in really good shape. I think we're going to split for now and come back when design is more settled.",
    "content_attachments": [],
    "group_on": "2026-05-23"
  },
  {
    "id": 1069479983,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-23T20:32:00.000Z",
    "updated_at": "2026-05-23T20:32:00.000Z",
    "title": "Answer to “What did you work on today?”",
    "inherits_status": true,
    "type": "Question::Answer",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958505/question_answers/1069479983.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/question_answers/1069479983",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTk4Mz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--e2822f9c45853713326a6a0c2e2cb375873f691a.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069479983/subscription.json",
    "comments_count": 0,
    "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069479983/comments.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069479983/boosts.json",
    "parent": {
      "id": 1069479853,
      "title": "What did you work on today?",
      "type": "Question",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958505/questions/1069479853.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/questions/1069479853"
    },
    "bucket": {
      "id": 2085958505,
      "name": "The Leto Laptop",
      "type": "Project"
    },
    "creator": {
      "id": 1049715929,
      "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d79103e78a10cd9f8ecda7470ea315674ac8a79a",
      "name": "Matt Donahue",
      "personable_type": "User",
      "title": "Global Data Strategist",
      "tagline": null,
      "location": null,
      "created_at": "2026-05-28T17:22:27.821Z",
      "updated_at": "2026-05-28T17:22:27.821Z",
      "email_address": "matt@honchodesign.com",
      "bio": null,
      "admin": false,
      "owner": false,
      "client": false,
      "employee": false,
      "time_zone": "America/Chicago",
      "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNlkkT4=--0f3c77d8c13069d514fd3f0ad694a67e426bad0f/avatar",
      "can_ping": true,
      "can_manage_projects": true,
      "can_manage_people": true,
      "can_access_timesheet": true,
      "can_access_hill_charts": true
    },
    "content": "We are ready to go. UX looks good, and we're sketching now.",
    "content_attachments": [],
    "group_on": "2026-05-23"
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/checkins.json

List forwards

Example JSON Response
[
  {
    "id": 1069479459,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-28T17:22:56.122Z",
    "updated_at": "2026-05-28T17:22:56.248Z",
    "title": "Can we make the logo pop?",
    "inherits_status": true,
    "type": "Inbox::Forward",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958502/inbox_forwards/1069479459.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/inbox_forwards/1069479459",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTQ1OT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--4d80cddb3e8f4e4370eb6be40a16915daff17966.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479459/subscription.json",
    "parent": {
      "id": 1069478966,
      "title": "Email Forwards",
      "type": "Inbox",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958502/inboxes/1069478966.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/inboxes/1069478966"
    },
    "bucket": {
      "id": 2085958502,
      "name": "Honcho Design Newsroom",
      "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
    },
    "content": "---------- Forwarded message ---------- From: \"Henry Bowman\"  Date: Oct 15, 2013 1:13 AM Subject: Can we make the logo pop? To: \"Victor Cooper\"  Hey Victor, I know it's late at night, but I had a quick thought about the logo. It feels, I dunno, flat. Is there anything you could do to make it pop? I'm thinking it needs more sizzle. More... SOMETHING. Maybe we could try adding a rainbow? Let's take a look mid-day tomorrow and re-group with the rest of the team. Cheers, Henry",
    "content_attachments": [],
    "subject": "Can we make the logo pop?",
    "from": null,
    "replies_count": 2,
    "replies_url": "https://3.basecampapi.com/195539477/buckets/2085958502/inbox_forwards/1069479459/replies.json"
  },
  {
    "id": 1069479458,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-28T17:22:56.039Z",
    "updated_at": "2026-05-28T17:22:56.045Z",
    "title": "Some technical details",
    "inherits_status": true,
    "type": "Inbox::Forward",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958502/inbox_forwards/1069479458.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/inbox_forwards/1069479458",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ3OTQ1OD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--7bbc0b742667aba54640eba3fab6a979f555d5e1.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958502/recordings/1069479458/subscription.json",
    "parent": {
      "id": 1069478966,
      "title": "Email Forwards",
      "type": "Inbox",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958502/inboxes/1069478966.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958502/inboxes/1069478966"
    },
    "bucket": {
      "id": 2085958502,
      "name": "Honcho Design Newsroom",
      "type": "Project"
    },
    "creator": {
      "id": 1049715938,
      "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkzOD9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--4ccc567a0a3b10e354bca909b704637b601f0b16",
      "name": "Annie Bryan",
      "personable_type": "User",
      "title": "Central Markets Manager",
      "tagline": "To open a store is easy, to keep it open is an art",
      "location": null,
      "created_at": "2026-05-28T17:22:29.167Z",
      "updated_at": "2026-05-28T17:22:29.167Z",
      "email_address": "annie@honchodesign.com",
      "bio": "To open a store is easy, to keep it open is an art",
      "admin": false,
      "owner": false,
      "client": false,
      "employee": true,
      "time_zone": "America/Chicago",
      "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBOJkkT4=--732a71fbd28ec10d9bf4466abd3588a8bea40bdb/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
    },
    "content": "---------- Forwarded message ---------- From: \"Beth Allen\"  Date: Oct 13, 2013 1:38 PM Subject: Some technical details To: \"Annie Bryan\"  Hey Team Honcho, Just wanted to let you know I'm a big fan of your blog. Your writing is so inspiring. Thanks for sharing!",
    "content_attachments": [],
    "subject": "Some technical details",
    "from": null,
    "replies_count": 0,
    "replies_url": "https://3.basecampapi.com/195539477/buckets/2085958502/inbox_forwards/1069479458/replies.json"
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/forwards.json

List files

  • GET /files.json — every file recording across all accessible projects, newest-first and paginated. The list matches the BC5 web "Everything > Files" surface: uploads (files in vaults), rich-text attachments (files attached to documents, messages, comments, etc.), and Basecamp documents appear side-by-side. Uploads and documents carry their standard recording shapes; attachments are wrapped in a recording envelope plus an attachable_sgid and blob metadata (filename, content_type, byte_size, download_url, …), with parent identifying the recording the attachment hangs from: the doc/message it lives in or, for images hotlinked into a chat, the autolinked-image wrapper whose url and app_url point at the surrounding chat line.

Two optional query parameters narrow the list:

  • kind — one of all (default), images, pdfs, documents, or videos. Filters files by extension or content type. kind=documents matches Basecamp documents together with word-processor and text files by extension (doc, docx, md, odt, pages, rtf, txt); PDFs are the separate kind=pdfs filter.
  • people_ids[] — repeatable; restrict the list to files created by the given people. Example: GET /files.json?people_ids[]=1069479920&people_ids[]=1069479921.
Example JSON Response
[
  {
    "id": 1069480281,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-28T17:29:05.129Z",
    "updated_at": "2026-05-28T17:29:05.144Z",
    "title": "company-logo.png",
    "inherits_status": true,
    "type": "Upload",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958505/uploads/1069480281.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/uploads/1069480281",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDI4MT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--424f03d79a7bf89ae7d9c7dcf5637a805a91a198.json",
    "subscription_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480281/subscription.json",
    "comments_count": 0,
    "comments_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480281/comments.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958505/recordings/1069480281/boosts.json",
    "position": 3,
    "parent": {
      "id": 1069479830,
      "title": "Docs & Files",
      "type": "Vault",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958505/vaults/1069479830.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958505/vaults/1069479830"
    },
    "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
    },
    "description": "<div dir=\"auto\">Check out the new logo</div>",
    "description_attachments": [],
    "content_type": "image/png",
    "byte_size": 1281,
    "filename": "company-logo.png",
    "download_url": "https://3.basecampapi.com/195539477/buckets/2085958505/uploads/1069480281/download/company-logo.png",
    "app_download_url": "https://storage.3.basecamp.com/195539477/buckets/2085958505/uploads/1069480281/download/company-logo.png",
    "width": 164,
    "height": 39
  },
  {
    "id": 1069480137,
    "status": "active",
    "visible_to_clients": false,
    "created_at": "2026-05-28T17:23:35.014Z",
    "updated_at": "2026-05-28T17:23:35.014Z",
    "title": "chicago_5",
    "inherits_status": true,
    "type": "Attachment",
    "url": "https://3.basecampapi.com/195539477/buckets/2085958506/messages/1069480132.json",
    "app_url": "https://3.basecamp.com/195539477/buckets/2085958506/messages/1069480132",
    "bookmark_url": "https://3.basecampapi.com/195539477/my/bookmarks/BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiLmdpZDovL2JjMy9SZWNvcmRpbmcvMTA2OTQ4MDEzNz9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg1yZWFkYWJsZQY7AFQ=--b92bd138ae85e2e2e1a5606fc7a24d5c70482e4f.json",
    "boosts_count": 0,
    "boosts_url": "https://3.basecampapi.com/195539477/buckets/2085958506/recordings/1069480137/boosts.json",
    "parent": {
      "id": 1069480132,
      "title": "Chicago stock photos for location shots",
      "type": "Message",
      "url": "https://3.basecampapi.com/195539477/buckets/2085958506/messages/1069480132.json",
      "app_url": "https://3.basecamp.com/195539477/buckets/2085958506/messages/1069480132"
    },
    "bucket": {
      "id": 2085958506,
      "name": "The Leto Locator",
      "type": "Project"
    },
    "creator": {
      "id": 1049715929,
      "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiK2dpZDovL2JjMy9QZXJzb24vMTA0OTcxNTkyOT9leHBpcmVzX2luBjsAVEkiCHB1cgY7AFRJIg9hdHRhY2hhYmxlBjsAVA==--d79103e78a10cd9f8ecda7470ea315674ac8a79a",
      "name": "Matt Donahue",
      "personable_type": "User",
      "title": "Global Data Strategist",
      "tagline": null,
      "location": null,
      "created_at": "2026-05-28T17:22:27.821Z",
      "updated_at": "2026-05-28T17:22:27.821Z",
      "email_address": "matt@honchodesign.com",
      "bio": null,
      "admin": false,
      "owner": false,
      "client": false,
      "employee": false,
      "time_zone": "America/Chicago",
      "avatar_url": "https://3.basecampapi.com/195539477/people/BAhpBNlkkT4=--0f3c77d8c13069d514fd3f0ad694a67e426bad0f/avatar",
      "can_ping": true,
      "can_manage_projects": true,
      "can_manage_people": true,
      "can_access_timesheet": true,
      "can_access_hill_charts": true
    },
    "attachable_sgid": "BAh7BkkiC19yYWlscwY6BkVUewdJIglkYXRhBjsAVEkiL2dpZDovL2JjMy9BdHRhY2htZW50LzEwNDY2Mjg1MDE_ZXhwaXJlc19pbgY7AFRJIghwdXIGOwBUSSIPYXR0YWNoYWJsZQY7AFQ=--249f341089261940034fd1aa6e2ed66fa2dd8a15",
    "byte_size": 131789,
    "content_type": "image/avif",
    "width": 700,
    "height": 467,
    "key": "3c95443f8e466abc23c29b6a3cb36d5ad68d3bf1",
    "filename": "chicago_5",
    "download_url": "https://storage.3.basecamp.com/195539477/blobs/3c95443f8e466abc23c29b6a3cb36d5ad68d3bf1/download/chicago_5",
    "previewable": true,
    "preview_url": "https://3.basecampapi.com/195539477/blobs/3c95443f8e466abc23c29b6a3cb36d5ad68d3bf1/previews/full",
    "thumbnail_url": "https://3.basecampapi.com/195539477/blobs/3c95443f8e466abc23c29b6a3cb36d5ad68d3bf1/previews/card"
  }
]
Copy as cURL
curl -s -H "Authorization: Bearer $ACCESS_TOKEN" https://3.basecampapi.com/$ACCOUNT_ID/files.json