Appearance
HTTP
HTTP Endpoint
Handle an incoming HTTP request.
Properties
Property | Description |
Path | The relative path that triggers this activity. |
Methods | The HTTP methods that trigger this activity.(GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD) |
Read Content | A value indicating whether the HTTP request content body should be read and stored as part of the HTTP request model. The stored format depends on the content-type header. |
Target Type | The type to parse the received request content into if it is set to true. If not set, the content will be parse into a default type, depending on the parser associated with the received content-type header. |
Schema | |
Authorize | Check to allow authenticated requests only |
Policy | Provide a policy to evaluate. If the policy fails, the request is forbidden. |
Outcomes
Outcome | Description |
Done | Always scheduled when the activity completed. |
Redirect
Write an HTTP redirect response.
Properties
Property | Description |
Location | The URL to redirect to (HTTP 302). |
Permanent | Whether or not the redirect is permanent (HTTP 301). |
Outcomes
Outcome | Description |
Done | Always scheduled when the activity completed. |
Send HTTP Request
Send an HTTP request.
Properties
Property | Description |
Url | The URL to send the HTTP request to. |
Method | The HTTP method to use when making the request.(GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD) |
Content | The HTTP content to send along with the request. |
Content Type | The content type to send with the request. |
Authorization | The Authorization header value to send. |
Request Headers | Additional headers to send along with the request. |
Read Content | Read the content of the response. |
Response Content Parser Name | The parser to use to parse the response content. |
Supported Status Codes | A list of possible HTTP status codes to handle. |
Outcomes
Outcome | Description |
Done | Always scheduled when the activity completed. |
Unsupported Status Code | No additional outcomes that are configured in the Supported Status Codes property |
* | Any additional outcomes that are configured in the Supported Status Codes property |
HTTP Response
Write an HTTP response.
Properties
Property | Description |
Status Code | The HTTP status code to return. |
Content | The content to send along with the response. |
Content Type | The HTTP content type header to write. |
Char Set | The character set to use when writing the response. |
Response Headers | Additional headers to write. |
Outcomes
Outcome | Description |
Done | Always scheduled when the activity completed. |