Delete a Credential
Delete a specified credential
Deletes a specified credential.
Deletes a specified credential.
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
acs_credential_idstring · uuidRequired
ID of the credential that you want to delete.
Responses
200
OK
application/json
400
Bad Request
401
Unauthorized
post
/acs/credentials/deletePOST /acs/credentials/delete HTTP/1.1
Host: connect.getseam.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 60
{
"acs_credential_id": "123e4567-e89b-12d3-a456-426614174000"
}{
"ok": true
}Request
Specify the desired credential by including the corresponding acs_credential_id in the request body.
Request Body Parameters
Parameter
Type
Description
acs_credential_id
String (UUID) Required
ID of the desired credential
Sample Request
seam.acs.credentials.delete(
acs_credential_id="66666666-6666-6666-6666-666666666666"
)curl -X 'POST' \
'https://connect.getseam.com/acs/credentials/delete' \
-H "Authorization: Bearer ${API_KEY}" \
-H 'Content-Type: application/json' \
-d '{
"acs_credential_id": "66666666-6666-6666-6666-666666666666"
}'await 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-66666666"
);seam.CredentialsAcs.Delete(
acsCredentialId: "66666666-6666-6666-6666-66666666"
);// Coming soon!_, uErr := client.Acs.Credentials.Delete(
context.Background(), &acs.CredentialsDeleteRequest{
AcsCredentialId: "66666666-6666-6666-6666-66666666",
},
)Response
Returns a Boolean ok status indicator or void.
Sample Response
None{
"ok": true
}void# Coming soon!voidvoid// Coming soon!voidLast updated
Was this helpful?

