Apipagos v2
  1. Location
Apipagos v2
  • Apipagos Extras
    • Cbu Cvu Validation
      GET
    • Credit Card Bin Validations
      GET
  • Apipagos Core
    • Contracts
      • Create
        • Create new contracts.
        • Create new contract extras.
      • Get
        • Display a listing of contracts.
        • Get contract by code or Id.
        • Get contract extra by ID.
      • Update
        • Updates contracts.
        • Updates contract extras.
        • Update single contract
    • Documents
      • Create
        • Create new documents.
        • Create documents new payment instances.
        • Create documents new life cycles.
      • Get
        • Display the life cycle of the document.
        • Display a listing of documents.
        • Display the payment instances of the document.
        • Display the specified document.
      • Update
        • Update payment instances of documents.
        • Update cycle of documents.
        • Update documents.
        • Update Single Document
    • Refunds
      • Get
        • Display a listing of refunds.
        • Get refunds by code.
      • Create
        • Create new refunds.
      • Update
        • Update refunds.
        • Update single refund
    • Subscriptions
      • Create
        • Create new subscriptions.
      • Get
        • Display a listing of subscriptions.
        • Get a subscription by code.
      • Update
        • Update subscriptions.
        • Update Single Subscription
    • Transactions
      • Create
        • Create new transactions.
      • Get
        • Display a listing of transactions.
        • Get a transaction by code.
      • Update
        • Update transactions.
        • Update Single Transaction
    • Publications
      • Create
        • Create new publications
      • Get
        • Display a listing of publications.
        • Get publication by code.
    • Users
      • Create
        • Create new users.
        • Create new users fiscal data.
        • Create new users addresses.
        • Create new users identities.
        • Create new users payment methods.
      • Get
        • Display a listing of the users.
        • Get a user by code.
      • Update
        • Update users.
        • Update Single User
    • Location
      • Get Countries
        GET
      • Get Country Provinces
        GET
      • Get Province Locations
        GET
    • Tenant info
      GET
    • AFIP
      GET
  1. Location

Get Province Locations

Developing
Testing Env
https://api.test.apipagos.com/api/v2/apipagos
Testing Env
https://api.test.apipagos.com/api/v2/apipagos
GET
/location/localities/{provinceCode}
apipagos

Request

Authorization
Add parameter in header
Company-Token
Example:
Company-Token: ********************
Path Params
provinceCode
string 
required
Código ISO de provincia
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
Previous
Get Country Provinces
Next
Tenant info
Built with