Retrieve project audit history

Retrieve the audit history for an inventory record.

Get project audit history

GET https://ris.rightsline.com/v4/project/:id/audit-history

This endpoint allows you to retrieve the audit history of a specific project by ID.

Path Parameters

Query Parameters

Headers

{
    "totalCount": 1,
    "entries": [
        {
            "isHeader": 1,
            "auditId": "0x00663C390001A63E0008",
            "sequence": "0x00663C390001A63E0002",
            "operationId": 2,
            "operationLabel": "Added",
            "charTypeId": 17,
            "recordId": 1122615,
            "title": "Project Record 1122615",
            "templateId": 1,
            "templateName": "Available Material",
            "userId": 112151,
            "userName": "Donald Glover",
            "auditDate": "2022-07-07T22:55:49.687Z",
            "changedField": null
        }
    ]
}

Get project audit history details

GET https://ris.rightsline.com/v4/project/:id/audit-history-detail

This endpoint allows you to retrieve the audit history details of a specific audit record.

Path Parameters

Query Parameters

Headers

{
    "changedField": "notes",
    "oldValue": "old note",
    "newValue": "new note",
    "messageId": "7d664774-c0b5-431a-99a1-978ec257d1fe", // if includeMessages = true
    "destination": "queue-name.fifo", // if includeMessages = true
    "auditDate": "2022-11-09T18:10:10.133Z" // if includeMessages = true
}

Last updated