Synctera · Schema

Posted Transactions Response

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
next_page_token string If returned, use the next_page_token to query for the next page of results. Not returned if there are no more rows.
result array List of posted transactions
View JSON Schema on GitHub

JSON Schema

synctera-posted-transactions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/posted_transactions",
  "title": "Posted Transactions Response",
  "properties": {
    "next_page_token": {
      "description": "If returned, use the next_page_token to query for the next page of results. Not returned if there are no more rows.",
      "nullable": true,
      "type": "string"
    },
    "result": {
      "description": "List of posted transactions",
      "items": {
        "$ref": "#/components/schemas/posted_transaction"
      },
      "type": "array"
    }
  },
  "required": [
    "next_page_token",
    "result"
  ],
  "type": "object"
}