Skip to main content
POST
/
api
/
reports
Create report
curl --request POST \
  --url https://api.ipulse.one/api/reports \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Monthly Uptime Report",
  "type": "uptime"
}
'

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Body

application/json
name
string
required
Example:

"Monthly Uptime Report"

type
enum<string>
required
Available options:
uptime,
performance,
incidents
Example:

"uptime"

period
enum<string>
default:30d
Available options:
7d,
30d,
90d
domains
string[]
format
enum<string>
default:pdf
Available options:
pdf,
csv,
json

Response

201

Report created successfully