Enroll a Bluetooth or USB reader before SDK connection
curl --request POST \
--url https://api.simplepay.mx/v1/in-person/readers/enroll \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"label": "<string>",
"location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({label: '<string>', location_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://api.simplepay.mx/v1/in-person/readers/enroll', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/in-person/readers/enroll"
payload = {
"label": "<string>",
"location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Enroll a Bluetooth or USB reader before SDK connection
POST
/
v1
/
in-person
/
readers
/
enroll
Enroll a Bluetooth or USB reader before SDK connection
curl --request POST \
--url https://api.simplepay.mx/v1/in-person/readers/enroll \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"label": "<string>",
"location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({label: '<string>', location_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://api.simplepay.mx/v1/in-person/readers/enroll', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/in-person/readers/enroll"
payload = {
"label": "<string>",
"location_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Autorizaciones
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Cuerpo
application/json
Respuesta
201
Provider-neutral pending reader.
Última modificación el 1 de septiembre de 2026