Skip to main content

PUT /columns/{id}/move

Description

Moves a column to a specified position

This route handles an HTTP PUT request sent to the columns/{id}/move endpoint.

Path parameters

The following parameter is included in the request URL:

NameTypeDescription
idnumberRequired. The ID of the column that needs to be moved.

Payload

The server expects a JSON object containing the following property:

NameTypeDescription
beforenumberOptional. The ID of the column before which the moved column should be inserted.

Example:

{
"before": 3
}

Response

The server responds with a JSON object containing the ID of the column that was moved.

Example:

{
"id": 4
}

The HTTP status code indicates whether the request was successful (response.status == 200) or if it encountered an error (response.status == 500).


Related articles: Working with server