preview
We're still working on this feature, but we'd love for you to try it out!
This feature is currently provided as part of a preview program pursuant to our pre-release policies.
This page provides a comprehensive reference for http delete available in the workflow automation actions catalog. These actions enable you to http delete request operations.
Prerequisites
Before using HTTP actions in workflow automation, ensure you have:
- Target API endpoint URLs.
- Any required authentication credentials (API keys, tokens, etc.).
- Understanding of the API request/response formats.
Tip
HTTP actions support secret syntax for any header value, allowing you to securely pass sensitive data like API keys. See secrets management for more information.
Automatic request headers
All HTTP requests performed by Workflow Automation automatically include the following headers:
Header | Format |
|---|---|
|
|
|
|
Delete web data
Performs an HTTP DELETE request to remove data at an API endpoint.
Important
If you need to pass sensitive data to an input, for example an Api-Key header, you can use values stored via the secretsManagementCreateSecret NerdGraph mutation.
Example:
{ "inputs": [ { "key": "headers", "value": "{\"Api-Key\": \"${{ :secrets:NR_API_KEY }}\"}" } ]}Input Field | Optionality | Type | Description |
|---|---|---|---|
url | Required | String | The target URL for the request. The URL must include the scheme (for example, https:// or http://). Example: |
urlParams | Optional | Map | The query parameters to append to the URL. Takes a stringified JSON object. |
headers | Optional | Map | The headers to add to the request. Takes a stringified JSON object. |
selectors | Optional | List | The selectors to get only the specified parameters as output. |
Output Field | Type | Description |
|---|---|---|
responseBody | String | The body of the response. |
statusCode | Int | The status code of the response. |
success | Boolean | Status of the request. |
errorMessage | String | Failure reason as message. |
Workflow definition | Input | Output |
|---|---|---|
| | |