Contents
Logbee API (REST)¶
Logbee provides API for logging events and requests from your applications.
Hurl samples can be found on the LogbeeAPI integrations page.
Create a Request Log (schema)¶
POST https://api.logbee.net/request-logs
Content-Type: application/json
{
"organizationId": "_OrganizationId_",
"applicationId": "_ApplicationId_",
"startedAt": "2024-10-09T15:54:17.488Z",
"httpProperties": {
"absoluteUri": "http://localhost/hello",
"method": "GET",
"response": {
"statusCode": 200
}
},
"logs": [
{
"logLevel": "Information",
"message": "My first log message"
}
]
}
Response¶
{
"id": "a2f1300a-b786-49e0-a556-3e6a2440ac60",
"organizationId": "_OrganizationId_",
"applicationId": "_ApplicationId_"
}
For technical support, questions or any feedback, please feel free to send us a message and we will get back to you.