GET
/
synctera_pay
/
vendors
/
{id}
Get a Synctera Pay vendor
curl --request GET \
  --url https://api.synctera.com/v1/synctera_pay/vendors/{id} \
  --header 'Authorization: Bearer <token>'
{
  "config": {
    "unique_reference_ids": true
  },
  "description": "Wise is a financial technology company that provides international money transfer services.",
  "name": "Wise",
  "enabled": true,
  "id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
  "tenant_id": "abcdef_ghijkl"
}

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

ID

Response

Account

Synctera Pay Vendor Response The base schema for a Synctera Pay vendor.

config
object
required
name
string
required

The name of the vendor.

Example:

"Wise"

enabled
boolean
required

Whether the vendor is enabled.

Example:

true

id
string<uuid>
required

Unique identifier for the vendor.

Example:

"7d943c51-e4ff-4e57-9558-08cab6b963c7"

tenant_id
string
required

The id of the tenant containing the resource.

Example:

"abcdef_ghijkl"

description
string

A description of the vendor.

Example:

"Wise is a financial technology company that provides international money transfer services."