BizKitHub
DocsAPI ReferenceService/api/service/scheduler/complete
postServiceService

/api/service/scheduler/complete

Report the outcome of a single scheduler request. On success the row is marked completed; on failure the retry counter is incremented and the row is finalized once retries are exhausted.

servicepostApiServiceSchedulerComplete

Parameters

JSON body

Request body

application/json
apiKeystringRequired
idstringRequired

Scheduler request id (bigint serialized as string).

successbooleanRequired
httpCodenumber | nullOptional
One of 2:
Variant 1
number
Variant 2
null
responseBodystring | nullOptional
One of 2:
Variant 1
string
Variant 2
null

Response schema

1 status code documented

200Success
success"true"Required

Response example

application/json
{
  "success": true
}

Request example

POST /api/service/scheduler/complete

post
curl -X POST "https://api.bizkithub.com/api/service/scheduler/complete" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "apiKey": "example_apiKey",
  "id": "example_id",
  "success": false
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key