Direct actions
GET
/accounts/{id}/connections/{identifier}

This sender's connection with a profile: status (not_connected / pending / connected), connection degree, whether it is an open profile, and whether the sender can message or invite them. A read; no profile view is registered and no cap is used.

Authorization

bearerAuth
AuthorizationBearer <token>

An API key created under Settings → API & Webhooks.

In: header

Path Parameters

id*string
identifier*string

The profile's public identifier (username), e.g. "john-doe".

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/accounts/string/connections/string"
{  "data": {    "profileUrl": "string",    "publicIdentifier": "string",    "status": "not_connected",    "degree": 1,    "openProfile": true,    "canMessage": true,    "canInvite": true,    "checkedAt": "2019-08-24T14:15:22Z"  }}