| title | HttpRequest |
|---|---|
| description | HttpRequest Schema Reference |
| Property | Type | Required | Description |
|---|---|---|---|
| url | string |
✅ | API endpoint URL |
| method | Enum<'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'> |
optional | HTTP method |
| headers | Record<string, string> |
optional | Custom HTTP headers |
| params | Record<string, any> |
optional | Query parameters |
| body | any |
optional | Request body for POST/PUT/PATCH |