Skip to main content
PATCH
/
users
/
@me
/
connections
/
reorder
Reorder connections
curl --request PATCH \
  --url https://api.fluxer.app/v1/users/@me/connections/reorder \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "connection_ids": [
    "<string>"
  ]
}
'
{
  "code": "ACCESS_DENIED",
  "message": "<string>",
  "errors": [
    {
      "path": "<string>",
      "message": "<string>",
      "code": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.

Body

application/json
connection_ids
string[]
required

Ordered list of connection IDs defining the new display order

Required array length: 1 - 20 elements

Response

No Content