Skip to main content
POST
/
api
/
content
/
v1
/
reportschedules
/
history
/
search
Search Report History
curl --request POST \
  --url https://{instance}.domo.com/api/content/v1/reportschedules/history/search \
  --header 'Content-Type: application/json' \
  --header 'X-DOMO-Developer-Token: <api-key>' \
  --data '
{
  "includeTitleClause": true,
  "titleSearchText": "Sales",
  "includeStatusClause": true,
  "status": "success",
  "includeTypeClause": true,
  "isAutomated": true,
  "includeScheduleIdClause": false
}
'
[
  {
    "id": 123456,
    "reportTitle": "Sales Report",
    "startTime": "2024-11-14T10:00:00Z",
    "endTime": "2024-11-14T10:05:00Z",
    "automated": true,
    "status": "success"
  }
]

Authorizations

X-DOMO-Developer-Token
string
header
required

Query Parameters

filter
string
default:USER

Filter type

limit
integer
default:100

Number of items to return

skip
integer
default:0

Number of items to skip

orderBy
enum<string>
default:startTime

Field to sort by

Available options:
reportTitle,
startTime,
endTime,
automated,
cardCount,
attachmentCount,
attachmentSize,
emailSize
isAscending
boolean
default:false

Sort order

Body

application/json

ReportLogSearchCriteria object

includeTitleClause
boolean
titleSearchText
string
includeStatusClause
boolean
status
string
includeTypeClause
boolean
isAutomated
boolean
includeScheduleIdClause
boolean

Response

OK