PATCH /api/builder/element/{element_id}/move/
Moves the element in the page before another element or at the end of the page if no before element is given. The elements must belong to the same page.
Servers
- /
Path parameters
Name | Type | Required | Description |
---|---|---|---|
element_id |
Integer | Yes |
The id of the element to move |
Request headers
Name | Type | Required | Description |
---|---|---|---|
ClientSessionId |
String | No |
An optional header that marks the action performed by this request as having occurred in a particular client session. Then using the undo/redo endpoints with the same ClientSessionId header this action can be undone/redone. |
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/json" |
Request body fields
Name | Type | Required | Description |
---|---|---|---|
parent_element_id |
Integer | No |
If provided, the element is moved as a child of the element with the given id. |
before_id |
Integer | No |
If provided, the element is moved before the element with this Id. Otherwise the element is placed at the end of the page. |
place_in_container |
String | No |
The place in the container. |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.