Verifies the external service connection using the initiation token and creates the connection record on success.
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/connections/verify \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"initiation_token": "<string>",
"visibility_flags": 1073741823
}
'{
"id": "<string>",
"type": "bsky",
"name": "<string>",
"verified": true,
"visibility_flags": 1073741823,
"sort_order": 1073741823
}Bot token: Authorization: Bot <token>. This is the primary authentication method for bot applications.
Success
The unique identifier for this connection
The type of connection
bsky, domain The display name of the connection (handle or domain)
Whether the connection has been verified
Bitfield controlling who can see this connection
0 <= x <= 2147483647The display order of this connection
0 <= x <= 2147483647curl --request POST \
--url https://api.fluxer.app/v1/users/@me/connections/verify \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"initiation_token": "<string>",
"visibility_flags": 1073741823
}
'{
"id": "<string>",
"type": "bsky",
"name": "<string>",
"verified": true,
"visibility_flags": 1073741823,
"sort_order": 1073741823
}