Retrieves the list of available purpose codes from VertoFx for cross-border payments.
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"
}
]
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
List of VertoFx purpose codes
The response is of type object[]
.
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"
}
]