Delete Logger

Delete a logger and all its associated log entries permanently.

Authentication

Requires management credentials:

  • Api-Key — Your API key
  • Api-Secret — Your API secret

Path Parameters

Parameter Description
id The unique identifier of the logger

Request

1curl -X DELETE "https://api.hola.cloud/v1/loggers/logger_xyz789" \
2  -H "Api-Key: LOGGER_API_KEY" \
3  -H "Api-Secret: LOGGER_API_SECRET"
1DELETE /v1/loggers/logger_xyz789 HTTP/1.1
2Host: api.hola.cloud
3Api-Key: LOGGER_API_KEY
4Api-Secret: LOGGER_API_SECRET

Response

HTTP 204 No Content.

Error Codes

Code Description
401 Missing or invalid API credentials
403 API credentials do not have access to this logger
404 Logger not found

Comments

Leave a comment