Remove organization member
curl --request DELETE \
--url https://api.sand.etherfuse.com/ramp/organization/{id}/member/{customer_id} \
--header 'Authorization: <api-key>'const options = {method: 'DELETE', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/organization/{id}/member/{customer_id}', 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/{customer_id}"
headers = {"Authorization": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)Organizations
Remove organization member
Removes an active member from a business organization by their customerId (the JWT sub). To revoke a not-yet-accepted email invite, use Revoke organization invite instead.
The target org must be a business org you own (your own org or a direct child).
DELETE
/
ramp
/
organization
/
{id}
/
member
/
{customer_id}
Remove organization member
curl --request DELETE \
--url https://api.sand.etherfuse.com/ramp/organization/{id}/member/{customer_id} \
--header 'Authorization: <api-key>'const options = {method: 'DELETE', headers: {Authorization: '<api-key>'}};
fetch('https://api.sand.etherfuse.com/ramp/organization/{id}/member/{customer_id}', 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/{customer_id}"
headers = {"Authorization": "<api-key>"}
response = requests.delete(url, headers=headers)
print(response.text)