GET
/
payment_schedules
List payment schedules
curl --request GET \
  --url https://api-sandbox.synctera.com/v0/payment_schedules \
  --header 'Authorization: Bearer <token>'
{
  "payment_schedules": [
    {
      "creation_time": "2023-11-07T05:31:56Z",
      "last_updated_time": "2023-11-07T05:31:56Z",
      "tenant": "abcdef_ghijkl",
      "description": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "metadata": {},
      "next_payment_date": {
        "execution_date": "2023-12-25",
        "scheduled_date": "2023-12-25"
      },
      "payment_instruction": {
        "request": {
          "amount": 607,
          "company_entry_description": "PAYROLL",
          "company_name": "Asdf Finance",
          "currency": "USD",
          "customer_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
          "dc_sign": "debit",
          "effective_date": "2022-03-18",
          "external_data": {},
          "final_customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "hold": {
            "amount": 123,
            "duration": 2
          },
          "is_same_day": true,
          "memo": "<string>",
          "originating_account_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
          "receiving_account_id": "b01db9c7-78f2-4a99-8aca-1231d32f9b96",
          "reference_info": "Tempore atque et cum.",
          "risk": {
            "client_ip": "<string>"
          },
          "sec_code": "WEB"
        },
        "type": "ACH"
      },
      "schedule": {
        "count": 2,
        "end_date": "2023-12-25",
        "frequency": "DAILY",
        "interval": 183,
        "start_date": "2023-12-25",
        "start_search": "BACKWARD"
      },
      "status": "ACTIVE"
    }
  ],
  "next_page_token": "a8937a0d"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

payment_schedule_id
string<uuid>[]
originating_customer
string<uuid>[]
to_next_schedule_date
string<date-time>
receiving_account
string<uuid>[]
to_next_execution_date
string<date-time>
receiving_customer
string<uuid>[]
description_like
string

Case insensitive wildcard search for description, wildcards can be specified with '*'. Wildcards at both the start and the end of the input is assumed.

from_next_schedule_date
string<date-time>
account_id
string<uuid>[]
from_creation_time
string<date-time>
description
string[]
from_last_updated_time
string<date-time>
from_next_execution_date
string<date-time>
in_queue
boolean
to_last_updated_time
string<date-time>
tenant
string[]

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

page_token
string

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

Example:

"a8937a0d"

originating_account
string<uuid>[]
sort_by
enum<string>[]
status
enum<string>[]
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

to_creation_time
string<date-time>
customer_id
string<uuid>[]
id
string<uuid>[]

Response

List of payment schedules

payment_schedules
object[]
required

Array of payment schedules.

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.

Example:

"a8937a0d"