Callback Notifications
Represents callbacks that you have uploaded to Metorial. Callbacks can be linked to various resources based on their purpose. Metorial can also automatically extract callbacks for you, for example for data exports.
Callback Notifications object
Attributes
object
StringType of the object, fixed as callback.notification
id
StringThe unique identifier of the callback notification
type
EnumThe type of the callback notification
status
EnumThe status of the callback notification
url
StringNullableThe URL to which the callback notification was sent
attempts
ObjectList of attempts for the callback notification
created_at
DateTimestamp when the callback notification was created
{"object": "callback.notification","type": "webhook_http","status": "pending","attempts": [{"object": "callback.notification.attempt","status": "succeeded","webhook_request": {"object": "callback.notification.attempt.webhook_request","request_method": "POST","request_headers": {},"response_headers": {}}},{"object": "callback.notification.attempt","status": "succeeded","webhook_request": {"object": "callback.notification.attempt.webhook_request","request_method": "POST","request_headers": {},"response_headers": {}}}]}
List callback notifications
Returns a paginated list of callback notifications for a specific callback.
Query Parameters
limit
NumberOptionalafter
StringOptionalbefore
StringOptionalcursor
StringOptionalorder
EnumOptionalcallback_id
UnionOptionalevent_id
UnionOptionaldestination_id
UnionOptionalcurl -X GET "https://api.metorial.com/callbacks-notifications" \-H "Authorization: Bearer metorial_sk_..."
Get callback notification by ID
Retrieves details for a specific callback by its ID.
URL Parameters
notification_id
StringThe unique identifier for the notification
curl -X GET "https://api.metorial.com/callbacks-notifications/not_Rm4Mnheq2bfEPhBhP7SY" \-H "Authorization: Bearer metorial_sk_..."