Revoking Mobile Credentials
Learn how to delete mobile credentials.
To revoke a mobile credential, delete the credential. Seam issues a discard command for the Visionline card. If you are deleting a multi-phone sync credential, Seam discards all of the credentials that were created underneath it.
Request:
seam.acs.credentials.delete(
acs_credential_id="66666666-6666-6666-6666-666666666666"
)Response:
NoneRequest:
curl -X 'POST' \
'https://connect.getseam.com/acs/credentials/delete' \
-H 'accept: application/json' \
-H "Authorization: Bearer ${API_KEY}" \
-H 'Content-Type: application/json' \
-d '{
"acs_credential_id": "66666666-6666-6666-6666-666666666666"
}'Response:
{
"ok": true
}Request:
await seam.acs.credentials.delete({
acs_credential_id: "66666666-6666-6666-6666-666666666666"
});Response:
voidRequest:
# Coming soon!Response:
# Coming soon!Request:
$seam->acs->credentials->delete(
acs_credential_id: "66666666-6666-6666-6666-666666666666"
);Response:
voidRequest:
seam.CredentialsAcs.Delete(
acsCredentialId: "66666666-6666-6666-6666-666666666666"
);Response:
voidLast updated
Was this helpful?

