GET
/
accounts
/
stop_payments
List stop payments
curl --request GET \
  --url https://api-sandbox.synctera.com/v0/accounts/stop_payments \
  --header 'Authorization: Bearer <token>'
{
  "stop_payments": [
    {
      "dispute_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "expires_on": "2023-11-07T05:31:56Z",
      "originator_name": "<string>",
      "stop_payment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "creation_time": "2023-11-07T05:31:56Z",
      "last_updated_time": "2023-11-07T05:31:56Z",
      "tenant": "abcdef_ghijkl"
    }
  ],
  "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

transaction_id
string<uuid>[]

A list of centinel transaction ids to filter on.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

originator_name
string[]

A list of originator names to filter on when listing stop payments.

account_id
string<uuid>[]

A list of account ids to filter on.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

stop_payment_id
string<uuid>[]

A list of stop payments to filter on.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

Response

200
application/json

list of stop payments

The response is of type object.