• Alerts
  • Audit Logs
  • Contacts
  • Custom user roles
  • Escalations
  • Forwarding rules
  • Heartbeats
  • Integrations
  • Integration actions
  • Integration outgoing filters
  • Maintenances
  • Notification rules
  • Notification rule steps
  • Routing rules
  • Schedules
  • Schedule on-calls
  • Schedule overrides
  • Schedule rotations
  • Schedule timelines
  • Syncs
  • Sync actions
  • Sync action groups
Cloud
Jira Service Management ops / Reference / REST API

Audit Logs

Postman Collection
OpenAPI

The Audit Logs API is designed to help you access the operations audit logs which capture the key changes and activities in Jira Service Management. The activities include alerting, on-call, incident management, and other operation features.

Operations
GET

Get audit LogsExperimental

This endpoint returns all operations audit logs in Jira Service Management, allowing retrieval of logs in a specified time range and filtering based on log level and category.

Permissions required: Permission to view Jira Service Management Audit logs using a JSM Org/Site/Product admin role

read:ops-config:jira-service-management

Request

Query parameters

limit

integer

pageToken

string

category

string

level

string

startTime

string

Required
endTime

string

Required

Responses

This message is returned if the request is successful.

application/json

ListAuditLogResponse
GET/v1/logs
1 2 3 4 curl --request GET \ --url 'https://api.atlassian.com/jsm/ops/api/{cloudId}/v1/logs?startTime={startTime}&endTime={endTime}' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 { "values": [ { "created": "2024-02-17T11:33:34.940Z", "category": "Notifications", "summary": "Rule[Schedule Start][scheduleStart] -> [email] notification to [xyz@abc.com] Submitted to provider.", "level": "Information", "details": "{\"targetUser\":\"xyz@abc.com\"}" }, { "created": "2024-02-17T11:35:34.940Z", "category": "Configuration Changes", "summary": "Schedule rotation [scheduleId: fa740f73, id: c124f500] added.", "level": "Information", "details": "{\"_incomingData\":{\"_httpParams\":{},\"httpUrl\":\"/jsm/v1/schedules/fa740f73\",\"incomingDataId\":\"c124f500\",\"_httpHeaders\":{\"Referer\":\"https://org.abc.com/jira/teams/70b66b25/on-call\",\"_entity\":{\"-rotationMetadata\":[{\"name\":\"Rotation1\",\"id\":\"bd6fdeb5\"}]}}" } ], "count": 5000, "links": { "next": "/logs?startTime=2024-01-01T00:00:00Z&endTime=2024-01-01T15:30:00Z&limit=5000&pageToken=WzE3MDgxNjk0M" } }

Rate this page: