GetCountries
GET
/Api/GetCountries
Api
Last modified:2025-06-06 13:43:09
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.ipay-solutions.com/Api/GetCountries'
Responses
🟢200OK
text/plain
Body
traceId
string <uuid>
read-onlyoptional
succeeded
boolean
read-onlyoptional
errors
array[object (ServiceError) {2}] | null
read-onlyoptional
that occurred during the identity operation.
code
string | null
optional
description
string | null
optional
warnings
array[object (ServiceError) {2}] | null
read-onlyoptional
code
string | null
optional
description
string | null
optional
data
array[object (CountryDto) {3}] | null
optional
description
string | null
optional
countryCode
string | null
optional
countryLocale
string | null
optional
Example
{
"traceId": "729bb1bf-882d-483b-89d3-5855dc5af3aa",
"succeeded": true,
"errors": [
{
"code": "string",
"description": "string"
}
],
"warnings": [
{
"code": "string",
"description": "string"
}
],
"data": [
{
"description": "string",
"countryCode": "string",
"countryLocale": "string"
}
]
}
Modified at 2025-06-06 13:43:09