Deleting an Access Grant
Learn how to delete an Access Grant.
To delete an Access Grant:
Code:
seam.access_grants.delete(access_grant_id="403ea27b-af76-4a48-ace9-8f9498f4c25c")Output:
NoneCode:
curl --include --request POST "https://connect.getseam.com/access_grants/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"access_grant_id": "403ea27b-af76-4a48-ace9-8f9498f4c25c"
}
EOFOutput:
{}Code:
await seam.accessGrants.delete({
access_grant_id: "403ea27b-af76-4a48-ace9-8f9498f4c25c",
});Output:
// voidCode:
seam.access_grants.delete(access_grant_id: "403ea27b-af76-4a48-ace9-8f9498f4c25c")Output:
nilCode:
$seam->access_grants->delete(
access_grant_id: "403ea27b-af76-4a48-ace9-8f9498f4c25c"
);Output:
Code:
// Coming Soon!Output:
// Coming Soon!Last updated
Was this helpful?

