Skip to main content
GET
/
api
/
v1
/
teams
/
{team_id}
/
onboarding
/
connections
Get Connections
curl --request GET \
  --url https://api.example.com/api/v1/teams/{team_id}/onboarding/connections \
  --header 'Authorization: Bearer <token>'
[
  {
    "provider": "<string>",
    "label": "<string>",
    "required": false,
    "type": "oauth",
    "connected": false,
    "fields": [
      {
        "key": "<string>",
        "label": "<string>",
        "type": "text",
        "placeholder": "",
        "help": "",
        "default": ""
      }
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.aitasker.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_id
string<uuid>
required

Response

Successful Response

provider
string
required
label
string
required
required
boolean
default:false
type
string
default:oauth
connected
boolean
default:false
fields
ConnectionFieldDef · object[]