Revoke an existing access grant, removing the grantee's access to the entity.
DELETEhttps://api.aitronos.com/v1/organizations/{organization_id}/access/grants/{grant_id}
Revokes (soft-deletes) an access grant. The grantee will no longer have access to the entity through this grant.
organization_id string required
The unique identifier of the organization (format: org_*).
grant_id string required
The unique identifier of the access grant (format: agrant_*).
No content (HTTP 204). The grant has been successfully revoked.
cURL
- Bash
- Python
- Python
- JavaScript
curl -X DELETE https://api.aitronos.com/v1/organizations/org_xyz789/access/grants/agrant_abc123def456 \
-H "Authorization: Bearer $ACCESS_TOKEN"