Regulatory Reporting
List regulatory reporting codes
Returns a paginated list of regulatory reporting codes for a given market (country). Use the limit and token parameters to paginate through results. Regulatory reporting is required for cross-border payments to certain countries. See https://docs.atlar.com/docs/regulatory-reporting for more details.
get/payments/v2/regulatory-reporting-codes
Query parameters
marketstring required
Two-letter ISO 3166-1 alpha2 country code.
Example:DE
ISO 3166-1 alpha-2 country code (e.g., CL, SE, NO, IN, TH, AE, IL, ID, TW, TR).
limitinteger
Limit the number of items in resulting query response.
tokenstring
If a query response contains a non-empty nextToken, use that value as token query parameter to continue pagination.
Response
List of regulatory reporting codes for the specified market.
Example response
{
"items": [
{
"market": "DE",
"scheme": "SCT",
"indicator": "CREDITOR",
"code": "20000",
"title": "Communication, building and transport services",
"classification": "Services"
}
],
"nextToken": "eyIxIjogIlRoaXMgaXMgYSBkdW1teSBwYWdpbmF0aW9uIHRva2VuLiJ9",
"token": "eyIwIjogIlRoaXMgaXMgYSBkdW1teSBwYWdpbmF0aW9uIHRva2VuLiJ9",
"limit": 100
}