Skip to main content
POST
/
api
/
content
/
v1
/
reportschedules
/
{scheduleId}
/
notifications
Build and Email Report
curl --request POST \
  --url https://{instance}.domo.com/api/content/v1/reportschedules/{scheduleId}/notifications \
  --header 'Content-Type: application/json' \
  --header 'X-DOMO-Developer-Token: <api-key>' \
  --data '
[
  {
    "userId": 901234,
    "displayName": "John Doe",
    "emailAddress": "john.doe@example.com"
  }
]
'

Authorizations

X-DOMO-Developer-Token
string
header
required

Path Parameters

scheduleId
integer
required

ID of the schedule

Body

application/json

Array of ReportRecipient objects

userId
integer
displayName
string
emailAddress
string<email>

Response

Accepted