PUT /api/v2/views/update_many

Allowed For

Request Parameters

The PUT request expects a views object that lists the views to update.

Each view may have the following properties:

NameMandatoryDescription
idyesThe ID of the view to update
positionnoThe new position of the view
activenoThe active status of the view (true or false)

Example Request Body

{
  "views": [
    {"id": 25, "position": 3},
    {"id": 23, "position": 5},
    {"id": 27, "position": 9},
    {"id": 22, "position": 7}
  ]
}

Servers

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. 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.
  3. Click Test request to test run your request to the API and see the API's response.