Job completed eventWebhook

Request
Request Body schema: application/json

This event gets triggered when Norce has completed one of its internal jobs. These events can be used to get information about when a job has finished.

ClientId
required
integer <int32>

Client identifier

ApplicationId
integer <int32>

Application identifier

JobId
required
integer <int32>

This is the JobId of the job in Norce

StatusId
required
integer <int32>

This is the status of the outcome of the job, should be 2, 3 or 4. (1=Initialized, 2=Succeeded, 3=Failed, 4=Validation failed, 5=Validating, 6=Queued)

Enum: 1 2 3 4 5 6
Responses
200

Return a 200 status to indicate that the data was received successfully

500

Return any 500 status to indicate that something went wrong and a retry of the event should be triggered.

Request samples
application/json
{
  • "ClientId": 0,
  • "ApplicationId": 0,
  • "JobId": 0,
  • "StatusId": 1
}