Skip to main content
GET
/
v1
/
audit
Retrieve Activity Log Entries
curl --request GET \
  --url https://api.domo.com/v1/audit \
  --header 'Authorization: Bearer <token>'
{
  "actionType": "VIEWED",
  "actorId": 0,
  "actorName": "",
  "additionalComment": "Leonard Euler viewed page Intro to Domo.",
  "browserDetails": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36",
  "device": "desktop",
  "eventText": "Viewed page",
  "ipAddress": "50.207.241.61",
  "objectId": "663909457",
  "objectName": "Intro to Domo",
  "objectType": "PAGE",
  "time": "2017-12-13 10:57:35 PM",
  "userId": "1619916076",
  "userName": "Leonard Euler",
  "userType": "USER"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

user
string

The Id of the user

start
number
required

The start time(milliseconds) of when you want to receive log events

end
number

The end time(milliseconds) of when you want to receive log events

limit
integer

The maximum number of events you want to retrieve(default is 50, maximum of 1000)

offset
integer

The offset location of events you retrieve(default is 0)

Response

200 - application/json
HTTP/1.1 200 OK
Content-Type: application/json
actionType
string
actorId
integer
actorName
string
additionalComment
string
browserDetails
string
device
string
eventText
string
ipAddress
string
objectId
string
objectName
string
objectType
string
time
string
userId
string
userName
string
userType
string