Revoke organization invite
curl --request DELETE \
--url https://api.sand.etherfuse.com/ramp/organization/{id}/member/invite/{email} \
--header 'Authorization: <api-key>'const options = {method: 'DELETE', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/organization/{id}/member/invite/{email}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/organization/{id}/member/invite/{email}"
headers = {"Authorization": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)Organizations
Revoke organization invite
Revokes a pending (not-yet-accepted) email invite for a business organization. To remove a member who has already joined, use Remove organization member instead.
The target org must be a business org you own (your own org or a direct child).
DELETE
/
ramp
/
organization
/
{id}
/
member
/
invite
/
{email}
Revoke organization invite
curl --request DELETE \
--url https://api.sand.etherfuse.com/ramp/organization/{id}/member/invite/{email} \
--header 'Authorization: <api-key>'const options = {method: 'DELETE', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/organization/{id}/member/invite/{email}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/ramp/organization/{id}/member/invite/{email}"
headers = {"Authorization": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)