HTTPRequestInfo¶
| Property | Type | Description |
|---|---|---|
| method | string | HTTP request method (‘GET’ or ‘POST’) API 6.0 adds support for ‘PATCH’, ‘PUT’, ‘DELETE’, ‘OPTIONS’ |
| url | string | HTTP/HTTPS request URL. May contain only the path & query string fragments when listening to HTTP requests with an HTTP service. |
| headers | object | Dictionary of HTTP request headers |
| body | string | Request body for ‘POST’ requests |
| query | object | Optional. Key -> value map of query string parameters. Applies when listening to HTTP requests with an HTTP service. API 1.37+ |
| id | string | Optional. HTTP request unique identifier. Applies when listening to HTTP requests with an HTTP service. API 1.37+ |