Skip to main content
PATCH
/
users
/
@me
/
connections
/
{type}
/
{connection_id}
Update connection
curl --request PATCH \
  --url https://api.fluxer.app/v1/users/@me/connections/{type}/{connection_id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "visibility_flags": 1073741823,
  "sort_order": 1073741823
}
'
{
  "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.

Path Parameters

type
string
required

The type

connection_id
string
required

The connection id

Body

application/json
visibility_flags
integer<int32>
Required range: 0 <= x <= 2147483647
sort_order
integer<int32>
Required range: 0 <= x <= 2147483647

Response

No Content