GET
/
transactions
/
posted
/
{id}
Get a posted transaction
curl --request GET \
  --url https://api-sandbox.synctera.com/v0/transactions/posted/{id} \
  --header 'Authorization: Bearer <token>'
{
  "created": "2023-11-07T05:31:56Z",
  "data": {
    "external_data": {},
    "force_post": true,
    "hold_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "lines": [
      {
        "account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
        "account_no": "<string>",
        "amount": 123,
        "avail_balance": 123,
        "available_balance": 123,
        "balance": 123,
        "created": "2023-11-07T05:31:56Z",
        "currency": "<string>",
        "dc_sign": "credit",
        "is_fee": true,
        "is_gl_acc": true,
        "is_offset": true,
        "is_primary": true,
        "meta": {},
        "network": "<string>",
        "related_line": 123,
        "seq": 123,
        "tenant": "abcdef_ghijkl",
        "updated": "2023-11-07T05:31:56Z",
        "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      }
    ],
    "memo": "<string>",
    "metadata": {},
    "original_trx": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "parent_trx": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "risk_info": {},
    "user_data": {}
  },
  "disputes": [
    {
      "created": "2023-11-07T05:31:56Z",
      "external_case_reference": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "internal_case_reference": "<string>",
      "status": "ARBITRATION",
      "updated": "2023-11-07T05:31:56Z"
    }
  ],
  "effective_date": "2023-11-07T05:31:56Z",
  "id": 123,
  "idemkey": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
  "info_only": true,
  "lead_mode": true,
  "posted_date": "2023-11-07T05:31:56Z",
  "reference_id": "<string>",
  "settlement_date": "2023-12-25",
  "status": "<string>",
  "subtype": "<string>",
  "tenant": "abcdef_ghijkl",
  "transaction_time": "2023-11-07T05:31:56Z",
  "type": "<string>",
  "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

Posted Transaction

created
string<date-time>
required

The creation date of the transaction

data
object
required
effective_date
string<date-time>
required

The "effective date" of a transaction. This may be earlier than posted_date in some cases (for example, a transaction that occurs on a Saturday may not be posted until the following Monday, but would have an effective date of Saturday)

id
integer
required
idemkey
string
required

The idempotency key used when initially creating this transaction.

Example:

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

info_only
boolean
required

Whether or not this transaction represents a purely informational operation or an actual money movement

lead_mode
boolean
required

Whether or not this transaction was created operating in "lead ledger" mode

posted_date
string<date-time>
required

The date the transaction was posted. This is the date any money is considered to be added or removed from an account.

reference_id
string | null
required

An external ID provided by the payment network to represent this transaction. This will always be null for internal transfers.

status
string
required
subtype
string
required

The specific transaction type. For example, for ach, this may be "outgoing_debit".

tenant
string
required

The id of the tenant containing the resource. This is relevant for Fintechs that have multiple workspaces.

Example:

"abcdef_ghijkl"

transaction_time
string<date-time>
required

The time the transaction occurred.

type
string
required

The general type of transaction. For example, "card" or "ach".

updated
string<date-time>
required

The date the transaction was last updated

uuid
string<uuid>
required

The unique identifier of the transaction.

disputes
object[]

The set of disputes related to this transaction. Since a dispute can be for a partial amount of a transaction, a single transaction can be involved in multiple disputes.

settlement_date
string<date>

The date the transaction was settled according to Synctera's platform. Generally, this can be interpretted the date the transaction was actually processed and settlement by the payment network.