Skip to main content
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:
await seam.acs.credentials.delete({
  acs_credential_id: '66666666-6666-6666-6666-666666666666',
})
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"
}'
seam.acs.credentials.delete(
  acs_credential_id="66666666-6666-6666-6666-666666666666"
)
# Coming soon!
$seam->acs->credentials->delete(
  acs_credential_id: "66666666-6666-6666-6666-666666666666"
);
seam.CredentialsAcs.Delete(
  acsCredentialId: "66666666-6666-6666-6666-666666666666"
);
Response:
void
{
  "ok": true
}
None
# Coming soon!
void
void