Delete a Credential

Delete a specified credential

Deletes a specified credential.

/acs/credentials/delete

POSThttps://connect.getseam.com/acs/credentials/delete
Authorization
Body
acs_credential_id*string (uuid)
Response

OK

Body
ok*boolean
Request
const response = await fetch('https://connect.getseam.com/acs/credentials/delete', {
    method: 'POST',
    headers: {
      "Authorization": "Bearer API Token",
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      "acs_credential_id": "123e4567-e89b-12d3-a456-426614174000"
    }),
});
const data = await response.json();
Response
{
  "ok": false
}

Request

Specify the desired credential by including the corresponding acs_credential_id in the request body.

Request Body Parameters

ParameterTypeDescription

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"
)

Response

Returns a Boolean ok status indicator or void.

Sample Response

None

Last updated

Logo

© Seam Labs, Inc. All rights reserved.