- Apipagos Extras
- Apipagos Core
- Contracts
- Documents
- Refunds
- Subscriptions
- Transactions
- Publications
- Users
- Location
- Tenant infoGET
- AFIPGET
Get Countries
Developing
Testing Env
Testing Env
GET
/location/countries
apipagos
Request
Authorization
Add parameter in header
Company-Token
Example:
Company-Token: ********************
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.test.apipagos.com/api/v2/apipagos/location/countries' \
--header 'Company-Token;'
Responses
🟢200Success
application/json
Body
array of:
id
integerÂ
optional
name
stringÂ
optional
iso_code
stringÂ
optional
internal_code
stringÂ
optional
category
stringÂ
optional
country_id
integerÂ
optional
created_at
stringÂ
optional
updated_at
stringÂ
optional
deleted_at
nullÂ
optional
iso_numeric_code
stringÂ
optional
iso_alphabetic_code
stringÂ
optional
iso_alphabetic_2_code
stringÂ
optional
Example
[
{
"id": 1,
"name": "Argentina",
"iso_numeric_code": "032",
"iso_alphabetic_code": "ARG",
"iso_alphabetic_2_code": "AR",
"deleted_at": null,
"updated_at": "2023-10-27T19:50:31.000000Z",
"created_at": "2023-10-27T22:50:34.000000Z"
}
]
🔴500Server Error Response
Modified at 2024-08-19 17:36:57