Cancel an invite
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/onboardinginvites/delete \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"inviteId": "c23b205a-244b-4962-9337-a5b68f1c874f"
}
'import requests
url = "https://sandbox-platform.jupico.com/v1/onboardinginvites/delete"
payload = { "inviteId": "c23b205a-244b-4962-9337-a5b68f1c874f" }
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({inviteId: 'c23b205a-244b-4962-9337-a5b68f1c874f'})
};
fetch('https://sandbox-platform.jupico.com/v1/onboardinginvites/delete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/onboardinginvites/delete';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({inviteId: 'c23b205a-244b-4962-9337-a5b68f1c874f'})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"code": "0",
"message": "Invite deleted"
}Onboarding Invites
Cancel an invite
Cancels an onboarding invite. The invite link can no longer be used to onboard.
POST
https://sandbox-platform.jupico.com
/
v1
/
onboardinginvites
/
delete
Cancel an invite
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/onboardinginvites/delete \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"inviteId": "c23b205a-244b-4962-9337-a5b68f1c874f"
}
'import requests
url = "https://sandbox-platform.jupico.com/v1/onboardinginvites/delete"
payload = { "inviteId": "c23b205a-244b-4962-9337-a5b68f1c874f" }
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({inviteId: 'c23b205a-244b-4962-9337-a5b68f1c874f'})
};
fetch('https://sandbox-platform.jupico.com/v1/onboardinginvites/delete', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/onboardinginvites/delete';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({inviteId: 'c23b205a-244b-4962-9337-a5b68f1c874f'})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"code": "0",
"message": "Invite deleted"
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
The inviteId of the onboarding invite.
Example:
"c23b205a-244b-4962-9337-a5b68f1c874f"
Response
Onboarding invite successfully cancelled.
Last modified on August 31, 2026
Was this page helpful?

