Resend a workspace invitation (developer)
curl --request POST \
--url https://api.simplepay.mx/v1/workspace/invitations/{id}/resend \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--header 'x-sp-step-up-token: <x-sp-step-up-token>' \
--data '{}'const options = {
method: 'POST',
headers: {
'x-sp-step-up-token': '<x-sp-step-up-token>',
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({})
};
fetch('https://api.simplepay.mx/v1/workspace/invitations/{id}/resend', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/workspace/invitations/{id}/resend"
payload = {}
headers = {
"x-sp-step-up-token": "<x-sp-step-up-token>",
"Idempotency-Key": "<idempotency-key>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)POST
/
v1
/
workspace
/
invitations
/
{id}
/
resend
Resend a workspace invitation (developer)
curl --request POST \
--url https://api.simplepay.mx/v1/workspace/invitations/{id}/resend \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--header 'x-sp-step-up-token: <x-sp-step-up-token>' \
--data '{}'const options = {
method: 'POST',
headers: {
'x-sp-step-up-token': '<x-sp-step-up-token>',
'Idempotency-Key': '<idempotency-key>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({})
};
fetch('https://api.simplepay.mx/v1/workspace/invitations/{id}/resend', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.simplepay.mx/v1/workspace/invitations/{id}/resend"
payload = {}
headers = {
"x-sp-step-up-token": "<x-sp-step-up-token>",
"Idempotency-Key": "<idempotency-key>",
"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.
Encabezados
Short-lived, single-use SimplePay recent-auth proof bound to this mutation and Idempotency-Key.
Required string length:
32 - 4096Required string length:
8 - 255Cuerpo
application/json
The body is of type object.
Respuesta
2XX
Forwarded to the owning origin Worker.
Última modificación el 1 de septiembre de 2026