Skip to main content
POST
/
users
/
@me
/
connections
/
{type}
/
{connection_id}
/
verify
Verify connection
curl --request POST \
  --url https://api.fluxer.app/v1/users/@me/connections/{type}/{connection_id}/verify \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "type": "bsky",
  "name": "<string>",
  "verified": true,
  "visibility_flags": 1073741823,
  "sort_order": 1073741823
}

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

Response

Success

id
string
required

The unique identifier for this connection

type
enum<string>
required

The type of connection

Available options:
bsky,
domain
name
string
required

The display name of the connection (handle or domain)

verified
boolean
required

Whether the connection has been verified

visibility_flags
integer<int32>
required

Bitfield controlling who can see this connection

Required range: 0 <= x <= 2147483647
sort_order
integer<int32>
required

The display order of this connection

Required range: 0 <= x <= 2147483647