Get Supported Regions
GET/api/accounts/:partnerAccountId/supported-regions
Get a complete list of regions that are supported by the partner to issue cards. The response will include the following information about a region:
- The region name.
- The region's code for use with our APIs.
- The region's availability for the partner to issue cards.
- Any legal documents for the region.
Request
Path Parameters
ID of the partner account.
Responses
- 200
- 403
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
Array [
]
]
regions
object[]
All regions supported by Immersve.
The region's code.
The region's title.
Whether the region is available to the given partner account.
documents
object
Regulatory documents for available regions, required to be presented during onboarding.
generalTermsOfUse
object
Terms governing the use of the platform.
Document title.
URL to the document.
privacyPolicy
object
Privacy policy.
Document title.
URL to the document.
disclosures
object[]
Legal and financial disclosures mandated by regulators.
Document title.
URL to the document.
marketCompliance
object[]
Documentation ensuring compliance with market-specific regulations.
Document title.
URL to the document.
{
"regions": [
{
"code": "AU",
"title": "Australia",
"isAvailable": true,
"documents": {
"generalTermsOfUse": {
"title": "General Terms of Use",
"source": "https://immersve.com/terms-and-conditions/au/general-terms-of-use"
},
"privacyPolicy": {
"title": "Privacy Policy",
"source": "https://immersve.com/terms-and-conditions/au/privacy-policy"
},
"disclosures": [
{
"title": "Product Disclosure Statement",
"source": "https://example.com/disclosures/immersve/pds-au_v001.0_en.pdf"
}
],
"marketCompliance": []
}
},
{
"code": "NZ",
"title": "New Zealand",
"isAvailable": true,
"documents": {
"generalTermsOfUse": {
"title": "General Terms of Use",
"source": "https://immersve.com/terms-and-conditions/nz/general-terms-of-use"
},
"privacyPolicy": {
"title": "Privacy Policy",
"source": "https://immersve.com/terms-and-conditions/nz/privacy-policy"
},
"disclosures": [],
"marketCompliance": []
}
},
{
"code": "CA",
"title": "Canada",
"isAvailable": false
}
]
}
Subject is not allowed to perform the action with the reason stated in the errorCode
FORBIDDEN There are no sufficient permissions to view supported regions for this account.
CARD_PROGRAMS_NOT_CONFIGURED Partner account has no card programs configured.
- application/json
- Schema
- Example (from schema)
Schema
{
"statusCode": 403,
"statusName": "Forbidden",
"errorCode": "FORBIDDEN",
"reason": "Unauthorized"
}