Record an inventory ledger movement
curl --request POST \
--url https://api.simplepay.mx/v1/digital-catalogs/{catalog_id}/inventory/movements \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.simplepay.mx/v1/digital-catalogs/{catalog_id}/inventory/movements', 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/movements"
payload = {}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Record an inventory ledger movement
POST
/
v1
/
digital-catalogs
/
{catalog_id}
/
inventory
/
movements
Record an inventory ledger movement
curl --request POST \
--url https://api.simplepay.mx/v1/digital-catalogs/{catalog_id}/inventory/movements \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.simplepay.mx/v1/digital-catalogs/{catalog_id}/inventory/movements', 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/movements"
payload = {}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Last modified on September 1, 2026