Monitoring Features
PulseBoard offers flexible monitoring capabilities to suit various endpoint types.
Supported Methods
We support all standard HTTP methods involved in REST APIs:
GET- Standard retrieval requestsPOST- Data submission checksPUT / PATCH- Update verificationDELETE- Deletion workflowsHEAD- Lightweight availability checks (headers only)
Custom Headers
You can specific custom HTTP headers for your requests. This is useful for:
- Authentication:
Authorization: Bearer caused... - Content Negotiation:
Accept: application/json - Custom Security Keys:
X-API-Key: ...

Request Body
For methods like POST or PUT, you can define a request body (JSON, XML, or plain text). This allows you to simulate real user interactions or API payloads to verify your backend processes data correctly.