Delete

Description

Delete a credential.

Request

HTTP Method: DELETE

Parameter Description
credential_id The ID of the credential to delete.
curl -X DELETE \
  https://<<META.tenant.domain>>/api/v1/user_credentials/<<credential_id>> \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'

Response

A successful request will return the JSON object with a null body and a 204 status code.

Sample response

{
  "body": null,
  "status": 204
}
Was this helpful?