Verify and bind the reader returned by the native SDK
curl --request POST \
--url https://api.simplepay.mx/v1/in-person/readers/{id}/bind-sdk-reader \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sdk_reader_ref": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({sdk_reader_ref: '<string>'})
};
fetch('https://api.simplepay.mx/v1/in-person/readers/{id}/bind-sdk-reader', 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/{id}/bind-sdk-reader"
payload = { "sdk_reader_ref": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Verify and bind the reader returned by the native SDK
POST
/
v1
/
in-person
/
readers
/
{id}
/
bind-sdk-reader
Verify and bind the reader returned by the native SDK
curl --request POST \
--url https://api.simplepay.mx/v1/in-person/readers/{id}/bind-sdk-reader \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"sdk_reader_ref": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({sdk_reader_ref: '<string>'})
};
fetch('https://api.simplepay.mx/v1/in-person/readers/{id}/bind-sdk-reader', 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/{id}/bind-sdk-reader"
payload = { "sdk_reader_ref": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(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
Required string length:
1 - 255Response
200
Verified provider-neutral reader.
Last modified on September 1, 2026