Transaction schema
Sample Request
curl --request GET \
--url '{api_endpoint}/organizations/{tenant}/fx/transactions/schema?countryCode={destinationCountryIso2}' \
--header 'content-type: application/json' \
--header 'x-agent-api-key: {agentApiKey}' \
--header 'x-agent-id: {agentId}'{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Inyo Global Payout Additional Data - Morocco",
"version": "1.0.0",
"type": "object",
"properties": {
"additionalData": {
"type": "object",
"properties": {
"statementNarrative": {
"type": "string",
"description": "Optional narrative text providing transaction details."
}
}
}
},
"required": [
"additionalData"
]
}GET /organizations/{tenant}/fx/transactions/schema?countryCode={destinationCountryIso2}Last updated