Skip to main content
GET
/
api
/
audit
/
v1
/
user-audits
Get Activity Log
curl --request GET \
  --url https://example.com/v1/api/audit/v1/user-audits \
  --header 'X-DOMO-Developer-Token: <api-key>'
[
  {
    "userName": "Jae Wilson",
    "userId": "1893952720",
    "userType": "USER",
    "actionType": "VIEWED",
    "objectType": "ACTIVITY_LOG",
    "additionalComment": "Jae Wilson viewed the activity log.",
    "time": 1654205894927,
    "eventText": "Viewed activity log"
  }
]

Authorizations

X-DOMO-Developer-Token
string
header
required

Domo Developer Token for authentication.

Query Parameters

start
integer<int64>
required

The start timestamp for the query (in milliseconds).

end
integer<int64>
required

The end timestamp for the query (in milliseconds).

offset
integer
default:0

The results offset.

limit
integer
default:300

The maximum number of results to return.

objectType
string

A comma-separated list of object types to filter by (e.g., DATAFLOW_TYPE,ACCOUNT).

Response

An array of activity log entries.

userName
string
Example:

"Jae Wilson"

userId
string
Example:

"1893952720"

userType
string
Example:

"USER"

actionType
string
Example:

"VIEWED"

objectType
string
Example:

"ACTIVITY_LOG"

additionalComment
string
Example:

"Jae Wilson viewed the activity log."

time
integer<int64>

Timestamp of the event in milliseconds.

Example:

1654205894927

eventText
string
Example:

"Viewed activity log"