Activate or deactivate a SimplePay QR entrypoint
curl --request PATCH \
--url https://api.simplepay.mx/v1/physical-checkout/entrypoints/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"expected_version": 2
}
'const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({expected_version: 2})
};
fetch('https://api.simplepay.mx/v1/physical-checkout/entrypoints/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/physical-checkout/entrypoints/{id}"
payload = { "expected_version": 2 }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)Activate or deactivate a SimplePay QR entrypoint
PATCH
/
v1
/
physical-checkout
/
entrypoints
/
{id}
Activate or deactivate a SimplePay QR entrypoint
curl --request PATCH \
--url https://api.simplepay.mx/v1/physical-checkout/entrypoints/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"expected_version": 2
}
'const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({expected_version: 2})
};
fetch('https://api.simplepay.mx/v1/physical-checkout/entrypoints/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/physical-checkout/entrypoints/{id}"
payload = { "expected_version": 2 }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Body
application/json
Response
The updated QR entrypoint.
Last modified on September 1, 2026