Revoking an Access Method
Learn how to revoke an access method so that a user can no longer use it.
seam.access_methods.delete(access_method_id="3f10d86c-526b-4b85-8788-cc1a74411b71")Nonecurl --include --request POST "https://connect.getseam.com/access_methods/delete" \
--header "Authorization: Bearer $SEAM_API_KEY" \
--json @- <<EOF
{
"access_method_id": "3f10d86c-526b-4b85-8788-cc1a74411b71"
}
EOF{}await seam.accessMethods.delete({
access_method_id: "3f10d86c-526b-4b85-8788-cc1a74411b71",
});// voidLast updated
Was this helpful?

