Command Type
Command Type ID: 1002Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| url | string | The target URL for the request (may contain httpParams placeholder) | Yes |
| verb | string | HTTP method: "GET", "POST", "PUT", "DELETE", "PATCH" | Yes |
| contentType | string | Payload type: "JSON" or "form-data" | Yes |
| timeout | number | Timeout for the command in milliseconds | Yes |
| body | object | Request body for POST/PUT requests | No |
| bypassStatusCode | Array of number | Status codes to bypass default error handling | No |
| delimiter | string | Delimiter for splitting httpParams (default: ";") | No |
| headers | object | HTTP headers | No |
| httpParams | string | Parameters to split and run in parallel (injected into URL/body/headers) | No |
| isJson | boolean | Parse responses as JSON (default: true) | No |
| proxy | ProxySettings | Proxy settings | No |
| urlParams | string | Deprecated — use httpParams instead | No |
Usage Examples
Parallel Requests with URL Params
Related Commands
- HTTP Request - Single HTTP request
- HTTP Request - Got - Single HTTP request using Got library
- HTTP Parallel Request - Got - Parallel requests via Got