List sync sources
curl --request GET \
--url https://api.simplepay.mx/v1/customer-hub/sync-sources \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/customer-hub/sync-sources', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/customer-hub/sync-sources"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)List sync sources
GET
/
v1
/
customer-hub
/
sync-sources
List sync sources
curl --request GET \
--url https://api.simplepay.mx/v1/customer-hub/sync-sources \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.simplepay.mx/v1/customer-hub/sync-sources', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/customer-hub/sync-sources"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
2XX
Forwarded to the owning origin Worker.
Last modified on September 1, 2026