List inventory locations
curl --request GET \
--url https://api.simplepay.mx/v1/digital-catalogs/{catalog_id}/inventory/locations \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/digital-catalogs/{catalog_id}/inventory/locations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/digital-catalogs/{catalog_id}/inventory/locations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)List inventory locations
GET
/
v1
/
digital-catalogs
/
{catalog_id}
/
inventory
/
locations
List inventory locations
curl --request GET \
--url https://api.simplepay.mx/v1/digital-catalogs/{catalog_id}/inventory/locations \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/digital-catalogs/{catalog_id}/inventory/locations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/digital-catalogs/{catalog_id}/inventory/locations"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)Last modified on September 1, 2026