- JavaScript
- cURL
- Python
- Ruby
- PHP
- C#
Code:Output:
await seam.accessGrants.delete({
access_grant_id: '403ea27b-af76-4a48-ace9-8f9498f4c25c',
})
// void
Code:Output:
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"
}
EOF
{}
Code:Output:
seam.access_grants.delete(access_grant_id="403ea27b-af76-4a48-ace9-8f9498f4c25c")
None
Code:Output:
seam.access_grants.delete(access_grant_id: "403ea27b-af76-4a48-ace9-8f9498f4c25c")
nil
Code:Output:
$seam->access_grants->delete(
access_grant_id: "403ea27b-af76-4a48-ace9-8f9498f4c25c"
);
Code:Output:
// Coming Soon!
// Coming Soon!

