Operations query
How to check the status of a specific operation.
Last updated
{
"operations": [
{
"operationId": "UNIQUE_OPERATION_ID_1",
"timestamp": "2025-12-22T07:59:53.517Z"
},
{
"operationId": "UNIQUE_OPERATION_ID_2",
"timestamp": "2025-12-22T07:58:44.071Z"
},
...
]
}curl -X 'GET' \
'https://api.landing.identity-platform.io/callback?startDate=2025-12-22T07%3A52%3A57.231Z&endDate=2025-12-22T07%3A58%3A45.000Z' \
-H 'accept: application/json' \
-H 'x-api-key: PRIVATE_API_KEY' \
-H 'x-client-id: PRIVATE_CLIENT_ID'curl -X 'GET' \
'https://api.landing.identity-platform.io/callback/b682caa8-f0da-4fc5-a373-24a3b81a889b' \
-H 'accept: application/json' \
-H 'x-api-key: PRIVATE_API_KEY' \
-H 'x-client-id: PRIVATE_CLIENT_ID'{
"operationId": "OPERAtION_ID",
"operation_result": "SUCCEEDED",
"callback_result": {
"id": "a85b2714-1968-4306-adda-cc1b20ec04a9",
"auth": {},
"callback": {
"request": {
"url": "https://webhook.site/e8865aec-75e7-4474-87ef-69280bdde8b5",
"method": "post",
"header": {
"Accept": "application/json, text/plain, */*",
"Content-Type": "application/json",
"User-Agent": "axios/1.5.1",
"Content-Length": "CONTENT_LENGHT",
"Accept-Encoding": "gzip, compress, deflate, br"
},
"body": "RECIEVED_DATA"
},
"response": {
"status": 200,
"body": "This URL has no default content configured. <a href=\"https://webhook.site/#!/edit/e8865aec-75e7-4474-87ef-69280bdde8b5\">Change response in Webhook.site</a>."
}
},
"operationId": "OPERAtION_ID",
"landingId": "LANDING_ID",
"timestamp": "2025-12-15T14:00:10.755Z"
}
}