Callback Events
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 Events object
Attributes
object
StringType of the object, fixed as callback.event
id
StringThe unique identifier of the callback event
type
StringNullableThe type of the callback event
status
EnumThe status of the callback event
payload_incoming
StringThe incoming payload of the callback event
payload_outgoing
StringNullableThe outgoing payload of the callback event
processing_attempts
ObjectList of processing attempts for the callback event
created_at
DateTimestamp when the callback event was created
{"object": "callback.event","status": "pending","processing_attempts": [{"object": "callback.event.attempt","status": "succeeded"},{"object": "callback.event.attempt","status": "succeeded"}]}
List callback events
Returns a paginated list of callback events for a specific callback.
Query Parameters
limit
NumberOptionalafter
StringOptionalbefore
StringOptionalcursor
StringOptionalorder
EnumOptionalcallback_id
UnionOptionalcurl -X GET "https://api.metorial.com/callbacks-events" \-H "Authorization: Bearer metorial_sk_..."
Get callback event by ID
Retrieves details for a specific callback by its ID.
URL Parameters
event_id
StringThe unique identifier for the event
curl -X GET "https://api.metorial.com/callbacks-events/eve_Rm4Mnheq2bfEPhBhP7SY" \-H "Authorization: Bearer metorial_sk_..."