GET
/
v0
/
transactions
/
tasks
/
{task_id}
Authorization
Header
Path
curl --request GET \
  --url https://api.sandbox.teal.dev/v0/transactions/tasks/{task_id} \
  --header 'Authorization: <authorization>' \
  --header 'teal-instance-id: <teal-instance-id>'
{
  "created_datetime": "2022-01-01T00:00:00Z",
  "error": {},
  "id": "UjL3BQnEaJtecuC7CUeDk",
  "ledger_id": "9jXyj7EpZNizehSd9wJN3G",
  "status": "pending",
  "updated_datetime": "2022-01-01T00:00:00Z"
}

Authorizations

Authorization
string
headerrequired

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

teal-instance-id
string
required

The Teal instance ID

Path Parameters

task_id
string
required

The ID of the transaction processing task

Response

200 - application/json
created_datetime
string
required

The date the transaction processing task object was created.

error
object | null
required

Any error that was encountered while processing transactions.

id
string
required
ledger_id
string | null
required

The ledger ID.

status
enum<string>
required
Available options:
pending,
failed,
complete
updated_datetime
string | null
required

The date the transaction processing task task was last updated.