Skip to main content
GET
Check on an async operation

Authorizations

Authorization
string
header
required

Pass your secret key in the Authorization header as a Bearer token: Authorization: Bearer sk_test_... (sandbox) or Bearer sk_live_... (production).

Keys are created in the developer portal and the plaintext secret is shown exactly once at creation. Treat them like passwords — never embed them in mobile apps or front-end code.

Path Parameters

operation_id
string
required

Response

The Operation, with result or error once it's done.

Tracks an async operation's progress.

id
string
required
Example:

"op_01HXYZ8A6N7K2W9PQ4T5Z3V6E0"

type
enum<string>
required
Available options:
connection.initiate,
connection.complete,
account.refresh,
statement.extract,
transaction.sync
Example:

"account.refresh"

status
enum<string>
required
Available options:
queued,
running,
succeeded,
failed
created_at
string<date-time>
required
result
object

Resource produced by the operation, present only when status=succeeded. The kind field discriminates the variant for SDK code generation.

error
object

Populated when status=failed. Same shape as error.* in an HTTP error response — branch on code.

completed_at
string<date-time> | null