Skip to main content
PUT
/
pin
/
order
cURL
curl --request PUT \
  --url http://127.0.0.1:3000/api/pin/order \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "type": "space",
  "anchorId": "<string>",
  "anchorType": "space",
  "position": "before"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
id
string
required
type
enum<string>
required
Available options:
space,
base,
table,
view,
dashboard,
workflow,
app
anchorId
string
required
anchorType
enum<string>
required
Available options:
space,
base,
table,
view,
dashboard,
workflow,
app
position
enum<string>
required
Available options:
before,
after

Response

200

Update pin order successfully

Last modified on December 10, 2025