mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-03-27 17:38:40 +07:00
43 lines
1.0 KiB
Markdown
43 lines
1.0 KiB
Markdown
# HTTPResponse
|
||
|
||
## `$response`.**`body`**
|
||
|
||
**Description:** The body of the response object from the last HTTP call. Only available in the ‘HTTP Request’ node
|
||
|
||
**Syntax:** `$response`.`$response`.**`body`**
|
||
|
||
**Returns:** Object
|
||
|
||
**Source:** Custom n8n functionality
|
||
|
||
## `$response`.**`headers`**
|
||
|
||
**Description:** The headers returned by the last HTTP call. Only available in the ‘HTTP Request’ node.
|
||
|
||
**Syntax:** `$response`.`$response`.**`headers`**
|
||
|
||
**Returns:** Object
|
||
|
||
**Source:** Custom n8n functionality
|
||
|
||
## `$response`.**`statusCode`**
|
||
|
||
**Description:** The HTTP status code returned by the last HTTP call. Only available in the ‘HTTP Request’ node.
|
||
|
||
**Syntax:** `$response`.`$response`.**`statusCode`**
|
||
|
||
**Returns:** Number
|
||
|
||
**Source:** Custom n8n functionality
|
||
|
||
## `$response`.**`statusMessage`**
|
||
|
||
**Description:** An optional message regarding the request status. Only available in the ‘HTTP Request’ node.
|
||
|
||
**Syntax:** `$response`.`$response`.**`statusMessage`**
|
||
|
||
**Returns:** String
|
||
|
||
**Source:** Custom n8n functionality
|
||
|