Pause Raw
This function card pauses the running flow execution and returns raw HTTP data to the caller. You can resume the flow by calling the resume API. See Resume a paused flow.
Input
Field | Definition | Type | Required |
---|---|---|---|
statusCode |
A status code to return to the caller. Valid values are 200 or any other HTTP response code from 400 through 599. |
Number |
FALSE |
headers |
An object representing the headers for the response. Each key of the header is parse into a header string as a "key: value" entry. For example, "Content-Type: text/plain". |
Object |
FALSE |
body |
The body of the HTTP response. |
Text |
FALSE |
Output
Field | Definition | Type |
---|---|---|
Headers |
The returned HTTP headers. |
Object |
Body |
The returned HTTP response body. |
Text |