An audit record.

interface AuditRecordBean {
    associatedItems?: AssociatedItemBean[];
    authorKey?: string;
    category?: string;
    changedValues?: ChangedValueBean[];
    created?: string;
    description?: string;
    eventSource?: string;
    id?: number;
    objectItem?: AssociatedItemBean;
    remoteAddress?: string;
    summary?: string;
}

Properties

associatedItems?: AssociatedItemBean[]

The list of items associated with the changed record.

authorKey?: string

Deprecated, use authorAccountId instead. The key of the user who created the audit record.

category?: string

The category of the audit record. For a list of these categories, see the help article Auditing in Jira applications.

changedValues?: ChangedValueBean[]

The list of values changed in the record event.

created?: string

The date and time on which the audit record was created.

description?: string

The description of the audit record.

eventSource?: string

The event the audit record originated from.

id?: number

The ID of the audit record.

objectItem?: AssociatedItemBean

Details of an item associated with the changed record.

remoteAddress?: string

The URL of the computer where the creation of the audit record was initiated.

summary?: string

The summary of the audit record.