GET
/
transactions
/
{id}
Get a transaction by ID
curl --request GET \
  --url https://api.synctera.com/v1/transactions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "card_transaction": {
    "card_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "currency_code": "<string>",
    "currency_conversion": {
      "conversion_rate": 123,
      "original_amount": 123,
      "original_currency_code": "<string>"
    },
    "merchant": {
      "address": "<string>",
      "city": "<string>",
      "country_code": "<string>",
      "independent_sales_organization_id": "<string>",
      "mcc": "<string>",
      "mid": "<string>",
      "name": "<string>",
      "payment_facilitator_id": "<string>",
      "postal_code": "<string>",
      "state": "<string>",
      "sub_merchant_id": "<string>"
    },
    "network": "<string>",
    "network_reference_id": "<string>",
    "pos": {
      "card_data_input_capability": "<string>",
      "card_holder_presence": true,
      "card_presence": true,
      "cardholder_authentication_method": "<string>",
      "country_code": "<string>",
      "is_installment": true,
      "is_recurring": true,
      "pan_entry_mode": "<string>",
      "partial_approval_capable": true,
      "pin_entry_mode": "<string>",
      "pin_present": true,
      "purchase_amount_only": true,
      "terminal_attendance": "<string>",
      "terminal_id": "<string>",
      "terminal_location": "<string>",
      "terminal_type": "<string>",
      "zip": "<string>"
    }
  },
  "subtype": "ATM_WITHDRAWAL",
  "account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
  "amount": 123,
  "creation_time": "2023-11-07T05:31:56Z",
  "currency": "<string>",
  "customer_id": "<string>",
  "dc_sign": "CREDIT",
  "decline": {
    "decline_details": "<string>",
    "reason": "ACH_RETURN"
  },
  "description": "<string>",
  "effective_date": "2023-12-25",
  "enhanced_transaction": {
    "category": "<string>",
    "enhanced_description": "<string>",
    "enhanced_raw": [
      {
        "amount": 123,
        "categorized_by": 123,
        "category": "<string>",
        "category_guid": "<string>",
        "described_by": 123,
        "description": "<string>",
        "extended_transaction_type": "<string>",
        "id": 123,
        "is_bill_pay": true,
        "is_direct_deposit": true,
        "is_expense": true,
        "is_fee": true,
        "is_income": true,
        "is_international": true,
        "is_overdraft_fee": true,
        "is_payroll_advance": true,
        "is_subscription": true,
        "memo": "<string>",
        "merchant_category_code": 123,
        "merchant_guid": "<string>",
        "merchant_location_guid": "<string>",
        "original_description": "<string>",
        "type": "<string>"
      }
    ]
  },
  "force_post": true,
  "fraud_risk": {
    "decision": "ACCEPT",
    "reasons": [
      "SUSPECTED_FRAUD"
    ],
    "vendor": "FEEDZAI",
    "vendor_reasons": [
      "<string>"
    ]
  },
  "group_id": "<string>",
  "hold_expiration_time": "2023-11-07T05:31:56Z",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "internal_account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
  "last_updated_time": "2023-11-07T05:31:56Z",
  "metadata": {},
  "partial_hold": true,
  "pending_amount": 123,
  "posted_amount": 123,
  "posted_date": "2023-12-25",
  "reference_id": "<string>",
  "settlement_date": "2023-12-25",
  "status": "COMPLETE",
  "system_description": "<string>",
  "transaction_time": "2023-11-07T05:31:56Z",
  "type": "ACH"
}

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"

Query Parameters

show_partial_clearings
boolean

Include a transaction for each clearing of an authorization.

Response

200
application/json

Transaction

The response is of type object.