Shared Access Grants
Revoke a shared-access grant
DELETE
/
shared-grants
/
project
/
{projectId}
/
{id}
Revoke a shared-access grant
curl --request DELETE \
--url https://backend.branch.flowengineering.com/shared-grants/project/{projectId}/{id} \
--header 'X-API-Key: <api-key>' \
--header 'customer: <customer>'import requests
url = "https://backend.branch.flowengineering.com/shared-grants/project/{projectId}/{id}"
headers = {
"customer": "<customer>",
"X-API-Key": "<api-key>"
}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {customer: '<customer>', 'X-API-Key': '<api-key>'}};
fetch('https://backend.branch.flowengineering.com/shared-grants/project/{projectId}/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));⌘I
Revoke a shared-access grant
curl --request DELETE \
--url https://backend.branch.flowengineering.com/shared-grants/project/{projectId}/{id} \
--header 'X-API-Key: <api-key>' \
--header 'customer: <customer>'import requests
url = "https://backend.branch.flowengineering.com/shared-grants/project/{projectId}/{id}"
headers = {
"customer": "<customer>",
"X-API-Key": "<api-key>"
}
response = requests.delete(url, headers=headers)
print(response.text)const options = {method: 'DELETE', headers: {customer: '<customer>', 'X-API-Key': '<api-key>'}};
fetch('https://backend.branch.flowengineering.com/shared-grants/project/{projectId}/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));