Resource Assignment

assignmentCreated.resource/assignmentCompleted.resource / assignmentDeleted.resource webhook events

See Introduction to Webhooks for details on the user object.

{
  "eventType": "assignmentCreated.resource",
  "timestamp": 17265103952580,
  "user": {},
  "resource": {
    "id": "b01dface-c01d-ca11-ce11-ba1eda110c8d",
    "displayTitle": "An Example Resource"
  },
  "resourceAssignment": {}
}

resourceAssignment fields

idstringunique identifier of the assignment
isCompletedbooleanassignment is completed?
completedAtinteger(optional) timestamp when the assignment was completed
createdAtintegertimestamp when the assignment was created
updatedAtintegertimestamp when the assignment was last updated
📘

Timestamps

Timestamps are UNIX-style with milliseconds, eg 1675816954321 is Wed Feb 08 2023 00:42:34 GMT+0000

Example JSON

{
  "resourceAssignment": {
    "id": "019200fd-9353-72f7-b8d8-9e5111745c28",
    "isCompleted": false,
    "completedAt": null,
    "createdAt": 1726593471315,
    "updatedAt": 1726593471315
  }
}