Skip to main content
GET
/
v1
/
identities
/
{id}
/
payment-instructions
Get Payment Instructions
curl --request GET \
  --url https://sandbox-api.borderless.xyz/v1/identities/{id}/payment-instructions \
  --header 'Authorization: Bearer <token>'
{
  "hasMore": true,
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "paymentMethod": "ACH",
      "currency": "USD",
      "country": "US",
      "deleted": false,
      "details": {
        "bankName": "Chase",
        "bankSlug": "Chase",
        "bankAccountNumberLast4": "7890",
        "bankRoutingNumber": "021000021",
        "bankCode": "40006",
        "phone": "<string>",
        "taxId": "<string>",
        "accountHolderName": "John Doe",
        "bankAccountType": "Checking",
        "address": {
          "id": "<string>",
          "street1": "<string>",
          "street2": "<string>",
          "city": "<string>",
          "state": "<string>",
          "country": "AF",
          "postalCode": "<string>"
        }
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Query Parameters

startingAfter
string

Id used to retrieve results that come after the specified item.

limit
number

Response page limit. Min 1, Max 100, Default value is 10.

Response

200 - application/json

List of Payment Instructions and hasMore flag.

hasMore
boolean
required
data
object[]
required