Report Schedule

Update

Update an existing Report Schedule record by ID.

put/api/cp/report-schedule/{id}

Path parameters

idinteger required

Id identifier

Request body

idinteger

Id

account_idinteger

Account Id (references account.id)

namestring required

Name

emailstring email

Email

frequency'day' | 'week' | 'month'

Frequency

queryobject

Query

Example request

{
  "id": 12345,
  "account_id": 1,
  "name": "Example Name",
  "email": "user@example.com",
  "frequency": "day",
  "query": "Sample query text content"
}

Response

Operation completed successfully

statusstring

Operation status

Example response

{
  "status": "OK"
}

Changes