- Apipagos Extras
- Apipagos Core
- Contracts
- Documents
- Refunds
- Subscriptions
- Transactions
- Publications
- Users
- Location
- Tenant infoGET
- AFIPGET
Get Province Locations
Developing
Testing Env
Testing Env
GET
/location/localities/{provinceCode}
apipagos
Request
Authorization
Add parameter in header
Company-Token
Example:
Company-Token: ********************
Path Params
provinceCode
string
required
Example:
AR-B
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/localities/AR-B' \
--header 'Company-Token;'
Responses
🟢200Success
application/json
Body
array of:
id
integer
required
name
string
required
code
string
required
province_id
integer
required
created_at
string
required
updated_at
string
required
deleted_at
null
required
Example
[
{
"id": 1,
"name": "FLORES",
"code": "02049010001",
"province_id": 1,
"created_at": "2023-10-27T21:21:26.000000Z",
"updated_at": "2023-12-01T14:20:48.000000Z",
"deleted_at": null
},
{
"id": 3860,
"name": "CIUDAD DE BUENOS AIRES",
"code": "02000010000",
"province_id": 1,
"created_at": "2023-11-08T18:24:04.000000Z",
"updated_at": "2023-12-01T14:20:47.000000Z",
"deleted_at": null
}
]
🔴500Server Error Response
Modified at 2024-08-29 16:58:41