Skip to content
Last updated

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.

Path Parameters

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_*).


Returns

No content (HTTP 204). The grant has been successfully revoked.

cURL
curl -X DELETE https://api.aitronos.com/v1/organizations/org_xyz789/access/grants/agrant_abc123def456 \
  -H "Authorization: Bearer $ACCESS_TOKEN"