ℹ️Logs
To create a log using the Logs API, send a POST request to the API endpoint.
API Endpoint
URL: https://api.fivemerr.com/v1/logs
Authorization
You can access the API using one of the following methods:
Include the
Authorizationheader with your API key.Include the
apiKeyas a query parameter in the URL.
Body
The request body should be a JSON object containing the following keys:
level (required): A string. Recommended values include:
infowarnerrorfataldebug
message (required): A string.
resource (optional): A string.
metadata (optional): A JSON object of any shape.
Example
Example with Node.js (with Axios)
Last updated