Skip to main content
GET
/
v2
/
applications
/
{applicationId}
/
jobs
Get List of Jobs
curl --request GET \
  --url https://{instance}.domo.com/api/executor/v2/applications/{applicationId}/jobs \
  --header 'X-DOMO-Developer-Token: <api-key>'
{
  "id": "94a4edfa-5926-4f0c-ad1e-a341f53f6113",
  "displayType": "DataFlow",
  "type": "DataFlow",
  "name": "DomoStats People with Activity Log",
  "owner": {
    "id": "",
    "name": "",
    "type": "USER",
    "group": false
  },
  "status": "SUCCESS",
  "created": 1624432428000,
  "lastTouched": 1651769881000,
  "rowCount": 833556,
  "columnCount": 18,
  "cardInfo": {
    "cardCount": 9,
    "cardViewCount": 0
  },
  "properties": {
    "formulas": {}
  },
  "lastUpdated": 1651769880787,
  "validConfiguration": true,
  "validAccount": true,
  "adc": true,
  "cloudId": "domo",
  "permissions": "READ_WRITE_DELETE_SHARE_ADMIN",
  "tags": "[\"domoStats\",\"domostats\",\"c_people\"]"
}

Authorizations

X-DOMO-Developer-Token
string
header
required

Domo Developer Token for authentication

Path Parameters

Application_Id
string
required

ID of the application

Query Parameters

offset
integer
default:0

The results offset. The default is 0.

Response

200 - application/json

Job details

id
string

Application ID

Example:

"94a4edfa-5926-4f0c-ad1e-a341f53f6113"

displayType
string

Display type of the application

Example:

"DataFlow"

type
string

Type of the application

Example:

"DataFlow"

name
string

Name of the application

Example:

"DomoStats People with Activity Log"

owner
object
status
string

Status of the application

Example:

"SUCCESS"

created
integer<int64>

Creation timestamp

Example:

1624432428000

lastTouched
integer<int64>

Last touched timestamp

Example:

1651769881000

rowCount
integer

Number of rows

Example:

833556

columnCount
integer

Number of columns

Example:

18

cardInfo
object
properties
object
lastUpdated
integer<int64>

Last updated timestamp

Example:

1651769880787

validConfiguration
boolean

Whether configuration is valid

Example:

true

validAccount
boolean

Whether account is valid

Example:

true

adc
boolean

ADC flag

Example:

true

cloudId
string

Cloud ID

Example:

"domo"

permissions
string

Permissions

Example:

"READ_WRITE_DELETE_SHARE_ADMIN"

tags
string

Tags in JSON string format

Example:

"[\"domoStats\",\"domostats\",\"c_people\"]"