GET
/
batch_templates
Get Batch Payment Templates
curl --request GET \
  --url https://api.synctera.com/v1/batch_templates \
  --header 'Authorization: Bearer <token>'
[
  {
    "config": {
      "external_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "max_individual_transaction_amount": 123,
      "max_total_transaction_amount": 123,
      "max_transaction_count": 123,
      "min_individual_transaction_amount": 123,
      "min_total_transaction_amount": 123,
      "min_transaction_count": 123,
      "settlement_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "settlement_customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "subtypes": [
        "<string>"
      ],
      "type": "<string>"
    },
    "description": "This template is used for international remittance",
    "enabled": true,
    "extra_rail_params": {},
    "id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
    "name": "International Remittance",
    "rules": {
      "disable_four_eyes_review": true,
      "hold_time": 123,
      "payment_rail": "<string>"
    },
    "tenant": "abcdef_ghijkl"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

name
string

Name of the Batch Template

Example:

"International Remittance"

enabled
boolean

Whether or not the template is enabled. If the template is not enabled, it will not be used when creating a batch transfer.

Example:

true

description
string

Description of the Batch Template

Example:

"This template is used for international remittance"

page_token
string

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

Example:

"a8937a0d"

id
string<uuid>[]

Unique resource identifier

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

Response

200
application/json

Retrieve all Batch Payment templates

A collection of Batch Payment Templates