Removed
Account ID no longer returned by default
January 7th, 2025
Starting in API version 2025-01, the account_id will no longer be returned in all responses by default. If you need the ID, you can still retrieve it through an account query.
Sample responses
2025-01 and later
{
"data": {
"boards": [
{
"id": "9876543210"
}
]
}
}2024-10 and earlier
{
"data": {
"boards": [
{
"id": "9876543210"
}
]
},
"account_id": 12345678
}