Webhooks Queue
ON THIS PAGE
Queued webhooks can be inspected at http://api.opensolar.com/api/orgs/:org_id/webhook_process_logs/
as a standard API response or as CSV by adding the querystring format=csv
.
Example
Requestcurl --location 'https://api.opensolar.com/api/orgs/123/webhook_queue_models/' \
-H 'Authorization: Bearer <token>' \
[
{
"url": "https://api.opensolar.com/api/orgs/123/webhook_queue_models/234/",
"org": "https://api.opensolar.com/api/orgs/123/",
"webhook": "https://api.opensolar.com/api/orgs/123/webhooks/132/",
"number_of_attempts": 1,
"next_attempt_at": "2024-12-02T05:36:47.049268Z",
"processing_started_at": "2024-12-02T05:37:11.482920Z",
"model_name": "Project",
"model_pk": 1237777,
"event": "UPDATE",
"foreign_identifier": "4cd18772-b98e-4ea9-91b5-612cf8374711",
"id": 38815749
},
...
]