Retrieve list of transfers for the authenticated team.
Returns: Array of transfer objects with basic information.
Important Notes:
- Requires scope
dwh_transfers_read - Your account must have
dwh.transfer.viewpermission. See roles and permissions. - Returns only non-deleted transfers belonging to your team
Bearer token authentication. Include the token in the Authorization header:
Authorization: Bearer <your-token>
Unique identifier of the team
Transfers retrieved successfully
{
"meta": {
"request_id": "019461A0-0000-7000-8000-000000000000"
},
"data": [
{
"dwh_transfer_id": 36091,
"display_name": "AW enhanced 2022-11-17",
"external_transfer_id": "ext-36091",
"status": "active",
"state": "active",
"schedule": "daily",
"run_date": "2026-01-01",
"data_source": null,
"destination": null,
"accounts": [],
"backfill": null
}
]
}API request ID
Transfer information for list endpoint
The transfer ID
Display name of the transfer
External identifier for the transfer
Transfer status
Transfer state (active or paused)
Schedule description
Last run date
Data source information
Destination information
Account identifiers
Backfill statistics
Unauthorized - Authentication is required and has failed or has not been provided.
{
"meta": {
"request_id": "019461A0-0000-7000-8000-000000000000"
},
"error": {
"code": "API_KEY_INVALID",
"message": "Invalid API key",
"description": "Provided API key was invalid."
}
}API request ID
Error code
Error message
Error description
Forbidden - The request is understood, but access is not allowed
{
"meta": {
"request_id": "01892A4D-7586-7000-8000-000000000000"
},
"error": {
"code": "ACCESS_DENIED",
"message": "Access Denied",
"description": "You do not have permission to perform this operation."
}
}API request ID
Error code
Error message
Error description
Too Many Requests - Rate limit exceeded.
{
"meta": {
"request_id": "019461A0-0000-7000-8000-000000000000"
},
"error": {
"code": "API_ROW_QUOTA_EXCEEDED",
"message": "Row quota exceeded",
"description": "You have exceeded your row-quota limit of rows for this month. Please log into Supermetrics Hub at https://hub.supermetrics.com/ and upgrade your plan, or contact our Supermetrics support team."
}
}API request ID
Error code
Error message
Error description
Internal Server Error - An error occurred on the server.
{
"meta": {
"request_id": "01892A4D-7586-7000-8000-000000000000"
},
"error": {
"code": "INTERNAL_SERVER_ERROR",
"message": "Internal Server Error",
"description": "An unexpected error occurred. Please try again later or contact support."
}
}API request ID
Error code
Error message
Error description