Schedule Controller

Create Schedule Successfully

Path: /api/schedules

Method: POST

Example Http Request

POST /api/schedules HTTP/1.1
Content-Type: application/json
X-WAL: 0x1234567890123456789012345678901234567890
X-SIG: 0xmockedsignature
X-MES: VGVzdCBtZXNzYWdl
Content-Length: 262
Host: localhost:8080

{"name":"Test Weekly Report","description":"Weekly test report","reportId":"interactions","frequency":"WEEKLY","recipients":["test@example.com","admin@example.com"],"format":"PDF","enabled":true,"executionTime":"14:30:00","dayOfWeek":"TUESDAY","dayOfMonth":null}

Example Http Response

HTTP/1.1 201 Created
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Access-Control-Allow-Headers: Origin, Content-Type, Accept, Authorization, Accept-Language, connection, Cache-Control, Access-Control-Request-Method, Access-Control-Request-Headers, X-SIG, X-WAL, X-MES
Access-Control-Allow-Credentials: true
Access-Control-Allow-Methods: GET, POST, PUT, PATCH, DELETE, OPTIONS, HEAD
Access-Control-Expose-Headers: Access-Control-Allow-Origin, Access-Control-Allow-Credentials
Content-Type: application/json
X-Content-Type-Options: nosniff
X-XSS-Protection: 0
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Frame-Options: DENY
Content-Length: 527

{"id":"690be73582e35e46fec13b79","name":"Test Weekly Report","description":"Weekly test report","reportId":"interactions","frequency":"WEEKLY","recipients":["test@example.com","admin@example.com"],"format":"PDF","enabled":true,"nextRun":[2025,11,11,14,30],"lastRun":null,"createdAt":[2025,11,6,0,9,25,884822832],"updatedAt":[2025,11,6,0,9,25,884828961],"createdBy":"0x1234567890123456789012345678901234567890","status":"ACTIVE","cronExpression":"0 30 14 ? * TUE","executionTime":[14,30],"dayOfWeek":"TUESDAY","dayOfMonth":null}

Example Curl Request

$ curl 'http://localhost:8080/api/schedules' -i -X POST \
    -H 'Content-Type: application/json' \
    -H 'X-WAL: 0x1234567890123456789012345678901234567890' \
    -H 'X-SIG: 0xmockedsignature' \
    -H 'X-MES: VGVzdCBtZXNzYWdl' \
    -d '{"name":"Test Weekly Report","description":"Weekly test report","reportId":"interactions","frequency":"WEEKLY","recipients":["test@example.com","admin@example.com"],"format":"PDF","enabled":true,"executionTime":"14:30:00","dayOfWeek":"TUESDAY","dayOfMonth":null}'

Schedule Controller