EndpointsIntegrations
List Resources
GET/v1/integrations/installations/{installation_id}/resources
Authorization
Authorizationstringrequired
Bearer token for API authentication. Format: `Bearer YOUR_API_KEY`
Path Parameters
installation_idstring(uuid)required
Installation ID, as returned when the account connected
Query Parameters
cursorstring
Pagination cursor from a previous page
limitinteger
Resources per page, for providers that paginate
Constraints
•Minimum: 1•Maximum: 1000
querystring
Filter resources by name, where supported
Constraints
•Maximum length: 255
parent_idstring
Container to list, for hierarchical providers such as Google Drive or Granola
Response Body
Request
cURL
GET/v1/integrations/installations/{installation_id}/resources
curl 'https://api.mixedbread.com/v1/integrations/installations/2f1c9a8e-6b4d-4e3a-9c1f-7d8e5b6a4c21/resources?limit=50' \
-H 'Authorization: Bearer YOUR_API_KEY'Response
JSON
{
"data": {
"installation_id": "2f1c9a8e-6b4d-4e3a-9c1f-7d8e5b6a4c21",
"provider": "gmail",
"status": "active",
"account": {
"id": "olivia@example.com",
"name": "olivia@example.com",
"email": "olivia@example.com",
"workspace": null
},
"store_id": "5d3e7f9a-1b2c-4d6e-8f0a-9c8b7a6d5e4f",
"store_name": "mail-olivia",
"sync": {
"failed_resource_count": 0,
"last_error": null,
"last_error_operation": null,
"last_error_at": null
},
"resources": [
{
"id": "__gmail_all_mail__",
"name": "All mail",
"kind": "label",
"is_selected": true,
"parent_id": null,
"url": null,
"message_count": null,
"member_count": null,
"sync": {
"status": "syncing",
"last_synced_at": "2026-09-05T20:10:35.936383Z",
"error": null,
"last_run": {
"status": "completed",
"started_at": "2026-09-05T20:10:21.677606Z",
"completed_at": "2026-09-05T20:10:35.936383Z",
"error": null
}
}
},
{
"id": "INBOX",
"name": "INBOX",
"kind": "label",
"is_selected": false,
"parent_id": null,
"url": null,
"message_count": null,
"member_count": null,
"sync": null
},
{
"id": "Label_12",
"name": "Customers",
"kind": "label",
"is_selected": false,
"parent_id": null,
"url": null,
"message_count": null,
"member_count": null,
"sync": null
}
],
"selected_resource_ids": [
"__gmail_all_mail__"
],
"parent_id": null,
"next_cursor": null,
"total": null,
"listing_status": "ready",
"sync_all": true
}
}