GET
/
transactions
/
pending
/
{id}
Get a pending transaction
curl --request GET \
  --url https://api-sandbox.synctera.com/v0/transactions/pending/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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.

Path Parameters

id
string<uuid>
required

Transaction ID

Example:

"472341e0-ea3e-41a1-96bc-fd0185e1eac8"

Response

200
application/json

Pending Transaction

The response is of type object.