Delete persona

DELETE /api/service/personas/{id}

Delete persona by its unique identifier.

Path parameters

  • id string Required

    Unique identifier of the persona to delete.

Responses

  • 200

    Persona was successfully deleted.

    Note that there is no content returned by this API when successful.

  • 400 object

    Bad request: typically because the persona could not be found.

    • code integer

      Unique code for the type of error that occurred.

    • error string

      High-level description of the error. This will typically be the words keycloak error.

    • info string | null
    • message string

      More detailed message regarding the error that occurred.

DELETE /api/service/personas/{id}
curl \
 -X DELETE https://tenant.atlan.com/api/service/personas/9bee3ff8-9bf4-436f-927b-3e415fd3afe9 \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response example (400)
{
  "code": 3500,
  "error": "keycloak error",
  "info": "string",
  "message": "Got invalid status code from keycloak",
  "requestId": "2PYHURjODyNywCwRDHtK4lWoepxkoxYd"
}