Node reference

REST POST for Joomla and WordPress

Sends an HTTP POST request to an external API and returns the response into your flow.

Overview

Sends an HTTP POST request to an external API and returns the response into your flow.

When the flow reaches this step, JOrchestrator executes REST POST against your linked site or an external integration, using the field values you set on General and Design. Downstream steps can read the output payload fields defined for this node.

Why use this node

REST POST is a action step in the Connectors › API group. Action steps run in the middle or end of a flow. They perform work on your CMS, call external services, or transform data for the next step.

Typical reasons teams add REST POST to a flow:

  • Create a record in a CRM when a Joomla form is submitted
  • Register webhooks or subscriptions with a third-party service
  • Submit transformed payload data to an internal microservice

Example workflows

Common patterns on the canvas:

  1. WebhookREST POSTSet JSONUpdate Article
  2. Scheduled triggerREST POSTIfSend Email on failure

How to set it up

Enter the URL and request body on the Design tab. Authentication and headers are optional.

Good to know

Use POST to create resources or submit data. The response body is available as text and parsed JSON when valid.

Properties panel

The designer shows these tabs for this node:

TabPurpose
InfoPlain-language description and output payload fields for downstream steps
GeneralCanvas label and read-only node ID
AIOptional assistant to help draft settings from plain language
DesignNode-specific configuration fields

System (automatic — not edited by the user)

These fields are managed by the designer or runtime — you do not type into them directly:

Property keyLabelTypeRequiredVisible whenNotes
_nodeIdNode IDnode-idNo
_payloadFieldsAvailable Fieldspayload-panelNo
headersHeadershttp-headers-builderNoOptional request headers. Authentication headers are added separately from the Authentication setting.

| body | Request body | raw-json-shape-editor | No | apiRestShowBody | { "id": "{{node_0.id}}" } |

User-configured — General tab

Property keyLabelTypeRequiredVisible whenNotes
labelLabeltextNoNode label

User-configured — Design tab

Property keyLabelTypeRequiredVisible whenNotes
urlURLpayload-textYeshttps://api.example.com/v1/resource
authTypeAuthenticationselect (none | bearer | basic | api_key; default: none)NoBearer, Basic, or API key header. Values support {{placeholders}} from upstream nodes.
bearerTokenBearer tokensecret-textNoauthType === 'bearer'Bearer token or {{secrets.api_token}}
basicUsernameBasic auth usernamepayload-textNoauthType === 'basic'Username
basicPasswordBasic auth passwordsecret-textNoauthType === 'basic'Password or {{secrets.password}}
apiKeyHeaderAPI key header nametext (default: X-API-Key)NoauthType === 'api_key'X-API-Key
apiKeyValueAPI key valuesecret-textNoauthType === 'api_key'Key value or {{secrets.api_key}}
requireHttpsRequire HTTPStoggle (default: true)NoReject http:// URLs when enabled.
timeoutSecondsTimeout (seconds)number (default: 30)No
responseFormatParse response asselect (json | text; default: json)NoWhen json is selected, a parsed object is returned in the json field when the body is valid JSON.

CMS site configuration (not on this node's properties panel)

Credentials, API keys, mailers, SMTP, and integration defaults are configured in the CMS plugin under Node Configuration, not per step on this node. Link the flow to a domain before testing CMS-backed fields.

Output payload fields

After this step runs, later nodes can reference these fields using placeholders such as {{rest_post.success}}.

Field keyTypeDescription
successbooleanWhether the operation completed successfully.
statusCodenumberHTTP response status code (e.g. 200, 404).
statusnumberHTTP status code or operation status string.
statusTextstringHTTP reason phrase (e.g. OK, Not Found).
headersobjectHTTP response headers as an object.
bodystringRaw HTTP response body as text.
jsonobjectParsed JSON when the response body is valid JSON.
methodstringHTTP method used for the request.
urlstringPublic HTTP URL to a resource on the site.
messagestringHuman-readable status, error, or result summary.

Validation rules

  • URL (url) must be filled before the flow can be saved.