Skip to main content
DELETE
/
api
/
admin
/
history
/
{historyId}
Delete a specific history record
curl --request DELETE \
  --url https://pria.praxislxp.com/api/admin/history/{historyId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "History deleted"
}

Authorizations

Authorization
string
header
required

JWT token passed in x-access-token header

Path Parameters

historyId
string
required

The unique identifier of the history record to delete

Response

History record successfully deleted

success
boolean

Indicates if the operation was successful

Example:

true

message
string

Confirmation message

Example:

"History deleted"