GET
/
transactions
/
pending
List pending transactions
curl --request GET \
  --url https://api-sandbox.synctera.com/v0/transactions/pending \
  --header 'Authorization: Bearer <token>'
{
  "next_page_token": "<string>",
  "result": [
    {
      "account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "account_no": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "data": {
        "amount": 1,
        "auto_post_at": "2023-11-07T05:31:56Z",
        "avail_balance": 123,
        "available_balance": 123,
        "balance": 123,
        "currency": "<string>",
        "dc_sign": "credit",
        "effective_date": "2023-11-07T05:31:56Z",
        "expires_at": "2023-11-07T05:31:56Z",
        "external_data": {},
        "force_post": true,
        "history": [
          {
            "account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
            "account_no": "<string>",
            "created": "2023-11-07T05:31:56Z",
            "data": {
              "amount": 1,
              "auto_post_at": "2023-11-07T05:31:56Z",
              "avail_balance": 123,
              "available_balance": 123,
              "balance": 123,
              "currency": "<string>",
              "dc_sign": "credit",
              "effective_date": "2023-11-07T05:31:56Z",
              "expires_at": "2023-11-07T05:31:56Z",
              "external_data": {},
              "force_post": true,
              "idemkey": "<string>",
              "memo": "<string>",
              "network": "<string>",
              "operation": "hold_cancel",
              "reason": "<string>",
              "req_amount": 1,
              "risk_info": {},
              "status": "CLEARED",
              "subtype": "<string>",
              "total_amount": 1,
              "transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
              "transaction_time": "2023-11-07T05:31:56Z",
              "type": "<string>",
              "user_data": {},
              "was_partial": true
            },
            "id": 123,
            "idemkey": "<string>",
            "offset_account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
            "offset_account_no": "<string>",
            "reference_id": "<string>",
            "tenant": "abcdef_ghijkl",
            "updated": "2023-11-07T05:31:56Z",
            "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
          }
        ],
        "idemkey": "<string>",
        "memo": "<string>",
        "network": "<string>",
        "operation": "hold_cancel",
        "reason": "<string>",
        "req_amount": 1,
        "risk_info": {},
        "status": "CLEARED",
        "subtype": "<string>",
        "total_amount": 1,
        "transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "transaction_time": "2023-11-07T05:31:56Z",
        "type": "<string>",
        "user_data": {},
        "was_partial": true
      },
      "id": 123,
      "idemkey": "<string>",
      "offset_account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "offset_account_no": "<string>",
      "reference_id": "<string>",
      "tenant": "abcdef_ghijkl",
      "updated": "2023-11-07T05:31:56Z",
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

include_child_transactions
boolean

Include transactions from sub-accounts when listing transactions for a given account

status
string[]

The status of the transaction

Example:

"PENDING,PARTCLEARED"

from_date
string<date>

Only display transactions with a posting date greater than from_date

to_date
string<date>

Only display transactions with a posting date less than or equal to to_date

transaction_id
string<uuid>

Only display holds linked to the provided transaction id

Example:

"7d943c51-e4ff-4e57-9558-08cab6b963c7"

type
string

Only display transactions matching the given type

idempotency_key
string[]

Transaction Idempotency Key(s). Multiple keys can be provided as a comma-separated list.

Example:

"ba313a66-cbb6-4bc3-aa37-6548448ecb32,cadb3dd1-feb0-42c3-b545-afbbfa99eb7f"

account_no
string

Account number

exclude_jit_transactions
boolean

Hide "JIT funding" transactions from results

uuid
string<uuid>[]

Transaction UUID(s). Multiple UUIDs can be provided as a comma-separated list.

Example:

"ba313a66-cbb6-4bc3-aa37-6548448ecb32,cadb3dd1-feb0-42c3-b545-afbbfa99eb7f"

page_token
string

Optional pagination token to be provided to retrieve subsequent pages, returned from previous get

Example:

"a8937a0d"

account_id
string<uuid>[]

Account ID

card_id
string<uuid>

Card ID

Example:

"6dc0397d-1aba-4be9-9582-895a7a887d49"

reference_id
string

Reference ID

limit
integer
default:100

Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.

Required range: x >= 1
Example:

100

subtype
string

Only display transactions matching the given subtype

Response

200
application/json

Paginated list of pending transactions

The response is of type object.