Event lookup

This endpoint is used to return the details for the given event id.

get
https://api.claimsmanagertest.crawco.co.uk/incidents/{incidentId}/events/{eventId}

Path parameters

Parameters marked are required.
Parameter Name Description Type Example Data
incidentId The incident id of the incident Integer 6597925
eventId The id of the event Integer 11299176

Example request

curl --location --request GET 'https://api.claimsmanagertest.crawco.co.uk/incidents/6597925/events/11299176' \
--header 'Authorization: Bearer {access token}'

Response body parameters

Parameter Name Description Event Type Data Type Example Data
eventType Type of event to add. All string Reminder
taskAssignee Where present will add a Task for the given user. Reminder, Correspondence Entry string Illery Bast
description Description of correspondence Correspondence Entry string Post from Client: Complaint
category The event log entry category Event Log Entry string Other
detail Free text detail of the event Reminder, Event Log Entry string Test Event
receivedDateTime The date and time when the correspondence was received Correspondence Entry string ($date-time) 2021-09-20T13:45:00Z
serviceLevel How quickly the correspondence should be responded to. Correspondence Entry string Cat. A: 24 hrs
actionRequiredDateTime When the reminder should be actioned. Reminder string ($date-time) 2021-09-21T13:45:00Z
isKeyEvent Flag denoting that record is a key event Correspondence Entry, Reminder boolean False
isUrgent Flag denoting that reminder is urgent Reminder boolean False
extendedFields An array containing any extended fields array
attachments An array containing any attachments to add to the incident. Event Log Entry, Correspondence Entry array

Example response

{
    "eventType": "Reminder",
    "taskAssignee": "Me",
    "description": null,
    "category": null,
    "detail": "This is a test Reminder",
    "receivedDateTime": null,
    "serviceLevel": null,
    "actionRequiredDateTime": "2022-05-01T11:37:11+01:00",
    "isKeyEvent": false,
    "isUrgent": true,
    "extendedFields": [
        {
            "identifier": "Global_Event_Form:Correspondence.DateTime_Recorded",
            "value": "2022-05-07T21:56:54.000Z"
        },
        {
            "identifier": "Global_Event_Form:Correspondence.Who_Recorded",
            "value": "API DFNOL"
        },
        {
            "identifier": "Global_Event_Form:Reminder.IsActioned",
            "value": "false"
        },
        {
            "identifier": "Global_Event_Form:Reminder.DateTime_Actioned",
            "value": null
        },
        {
            "identifier": "Global_Event_Form:Correspondence.DateTime_Updated",
            "value": "2022-05-07T21:56:54.000Z"
        },
        {
            "identifier": "Global_Event_Form:Correspondence.Who_Updated",
            "value": "API DFNOL"
        },
        {
            "identifier": "Global_Event_Form:IsActioned_Hidden",
            "value": "false"
        }
    ]
}