Skip to main content
GET
/
v1
/
users
/
{user_id}
/
connections
/
connected
List connected accounts
curl --request GET \
  --url https://api.usenaive.ai/v1/users/{user_id}/connections/connected \
  --header 'Authorization: Bearer <token>'
{
  "connections": [
    {
      "id": "<string>",
      "toolkit": "<string>",
      "connected_account_id": "<string>",
      "expires_at": "2023-11-07T05:31:56Z",
      "last_used_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Workspace API key. Create one via the dashboard or POST /v1/auth/keys.

Path Parameters

user_id
string
required

Tenant user UUID, or default / me for the operator's default user.

Response

OK.

connections
object[]