Accounts
List the organizations and accounts accessible via your API key, and look up their account IDs, using Conductor’s asynchronous Config API endpoint.
Change Log
- 2026-08-03 · Added — Accounts configuration endpoint.
Authorizations
Conductor API token, sent as Bearer <your-api-token>. Generate a token from Integrations > API > Create API Token.
Body
- Submit
- Poll
- Paginate
Submit a new query for accounts. Results are scoped to the accounts accessible via the API key. Returns an executionId to track the query.
(Optional) Maximum number of rows to return for the submitted query.
x >= 1100
Response
Query completed successfully (returned when polling with queryExecutionId)
List of query results. Each item is a positional tuple row.
Available only when executionState is COMPLETED.
Positional tuple row for accounts configuration results. Values are returned as strings in the following order:
- organization_id, 2) organization_name, 3) account_id, 4) account_name.
4 elementsCurrent execution state of the query:
IN_PROGRESS: The query is still running. Poll again later.COMPLETED: The query finished successfully. Results are available.FAILED: The query failed. Check the error message if available.
IN_PROGRESS, COMPLETED, FAILED Unique identifier for the query execution. Valid for 7 days. Use this for polling and pagination.
Unique identifier for the HTTP request, useful for support and debugging.
Token for retrieving the next page of results. Available as long as the executionId is valid (7 days).
If null, there are no more pages available.
Total number of rows across all pages (if available).
Column metadata providing the name and type for each position in the results tuple.
