Skip to main content

List Application Logs


GET services/api/v1/application_logs

Returns all application logs.

Optional Query Parameters

ParameterTypeDescription
application_idstringReturns only application logs belonging to the specified application.
type_ofstringReturns only logs of a specific log type. Possible log types are ["default", "created", "status_updated", "email_sent_manually", "email_sent_automatically", "accepted_privacy", "keep_until_extended", "info_added", "email_added", "whatsapp_added", "phone_added", "send_delayed_email", "merged", "public_application_sent", "changed_job"].
created_at_sincetimestampOnly return application logs that have been created since the specified timestamp.
updated_at_sincetimestampOnly return application logs that have been updated since the specified timestamp.

Response

Results list.

{
"entries": [
{
"id": "q0Bp7zrE",
"application_id": "A96elYny"
"created_at": "2024-09-12T14:25:18.181Z",
"updated_at": "2024-09-12T14:25:34.027Z",
"type_of": "email_added"
},
{
"id": "x4Ykp6my",
"application_id": "KO6m8AYZ",
"created_at": "2024-09-06T05:58:11.873Z",
"updated_at": "2024-09-06T05:58:11.873Z",
"type_of": "created"
},
],
"current_page": 1,
"per_page": 30,
"total_entries": 2
}