Last updated

Issue Change

The Unit Change webhook triggers:

  • Issue created
  • Issue updated.

Summary

The following gives and overview of the fields in the json.

FieldDescription
idUnique identifier for the issue record.
subjectThe subject or title of the issue.
descriptionA detailed description of the issue.
statusThe current status of the issue.
priorityThe priority level of the issue, often including a time-based action requirement.
issueTypeThe type or category of the issue (nullable if not specified).
bookingReferenceThe reference number associated with the booking related to the issue.
bookingIdThe unique ID of the booking associated with the issue.
unitNameThe name of the unit associated with the issue.
unitIdThe unique ID of the unit associated with the issue.
buildingNameThe name of the building associated with the issue.
buildingIdThe unique ID of the building associated with the issue.
guestStayNameThe name of the guest stay associated with the issue.
guestStayIdThe unique ID of the guest stay associated with the issue.
reportedByNameThe name of the person who reported the issue.
reporterContactIdThe unique ID of the contact who reported the issue.
reporterUserIdThe unique ID of the user who reported the issue (nullable if not specified).
reportingTimeThe timestamp when the issue was reported.
assigneNameThe name of the person assigned to resolve the issue.
resolutionTargetDateThe target date for resolving the issue.
resolutionDeadlineDateThe deadline date for resolving the issue.
elapsedTimeThe time elapsed since the issue was reported, in seconds.
typeThe type of record.
messageAny additional message related to the issue (nullable if not specified).
startDateThe start date related to the issue (nullable if not specified).
endDateThe end date related to the issue (nullable if not specified).
userIdThe unique ID of the user associated with the issue (nullable if not specified).
emailThe email address associated with the issue (nullable if not specified).

Example

{
      "id":106,
      "subject":"test email 2",
      "description":"test",
      "status":"CLOSED",
      "priority":"[2] Action in the next 48 hours - 2 days",
      "issueType":null,
      "bookingReference":"20210830-00004",
      "bookingId":1816,
      "unitName":"101 contract",
      "unitId":1,
      "buildingName":"Residential Building (GBP)",
      "buildingId":2,
      "guestStayName":"DEMO NAME 2",
      "guestStayId":579,
      "reportedByName":"DEMO NAME 2",
      "reporterContactId":6,
      "reporterUserId":null,
      "reportingTime":"2021-08-30 12:17:00",
      "assigneName":"DEMO NAME 2",
      "resolutionTargetDate":"2021-09-01 02:30:00",
      "resolutionDeadlineDate":"2021-08-30 12:17:00",
      "elapsedTime":"620601",
      "type":"ISSUE",
      "message":null,
      "startDate":null,
      "endDate":null,
      "userId":null,
      "email":null
}