Skip to main content

A link groups one or more jobs with a connection to your external source.
Links

Sources

A source is an external data service that Deck connects to. Each source has a unique source_guid that identifies it in the Deck system.
Sources

Connections

A connection is an authenticated link between a user and a source. When a user successfully authenticates, Deck creates a connection and issues an access_token to perform actions on their behalf. Connections can be created via the Deck Widget or directly from the API.
Connections

Jobs

Jobs are tasks you submit to Deck to perform actions. They can be read or write operations, each with specific input parameters and custom outputs. Jobs can run individually or be chained together to perform more complex workflows.
Jobs

Storage

Storage allows jobs to output documents such as statements or invoices. You can retrieve stored objects or perform advanced actions like data extraction.
curl --request POST \
  --url https://sandbox.deck.co/api/v1/jobs/documents/list \
  --header 'Content-Type: application/json' \
  --header 'x-deck-client-id: <api-key>' \
  --header 'x-deck-secret: <api-key>' \
  --data '{
"access_token": "<string>"
}'
I