English
Update record order in view
cURL
curl --request PUT \ --url http://127.0.0.1:3000/api/table/{tableId}/view/{viewId}/record-order \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "anchorId": "<string>", "position": "before", "recordIds": [ "<string>" ] } '
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Id of the record that you want to move other records around
before
after
Ids of those records you want to move
1000
Successfully update.
Was this page helpful?