Scheduler Job Update

scheduler.job-updated

This event occurs when a job run by the transaction scheduler service is updated.

Payload Object

id

string (UUID)

Event ID.

type

string

Event type. Value is scheduler.job-updated.

createdAt

string (date-time)

Date and time the event occurred.

data

object

Data related to the event.

schedulerId

string (UUID)

ID of the scheduling system.

status

string

Current job status.

updatedAt

string (date-time)

Date and time of the current status.

previousStatus

string

Previous job status.

previousUpdatedAt

string (date-time)

Date and time of the previous status.

Sample Payload Object

				
					{
  "id": "5ab365f5-0225-4060-87c1-f41290ca7c80",
  "type": "scheduler.job-updated",
  "createdAt": "2025-04-10T21:10:53.857Z",
  "data": {
    "schedulerId": "3ffa34ee-313d-463f-b973-c8937eb4efd6",
    "status": "active",
    "updatedAt": "2025-04-09T02:57:55.187Z",
    "previousStatus": "pending",
    "previousUpdatedAt": "2025-04-08T02:57:55.187Z"
  }
}
				
			
Exit mobile version