Skip to main content
GET
/
integrations
/
vertofx
/
purpose-codes
Get VertoFx Purpose Codes
curl --request GET \
  --url https://server26-dot-royalti-project.uc.r.appspot.com/integrations/vertofx/purpose-codes \
  --header 'Authorization: Bearer <token>'
[
  {
    "code": "INV",
    "description": "Invoice Payment"
  },
  {
    "code": "SAL",
    "description": "Salary Payment"
  }
]
Retrieves the list of available purpose codes from VertoFx for cross-border payments.

Authentication

This endpoint requires authentication. Include your bearer token in the Authorization header.

Responses

āœ… 200 - List of VertoFx purpose codes

āš ļø 401 - Unauthorized

āŒ 500 - Internal Server Error

Tags

VertoFx

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"

Response

List of VertoFx purpose codes

code
string
Example:

"INV"

description
string
Example:

"Invoice Payment"

⌘I