POST
/
integration
/
{integration_name}
/
connect
curl --request POST \
  --url https://api.isosceles.ai/integration/{integration_name}/connect/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "url": "https://api.notion.com/v1/oauth/authorize?response_type=code&client_id=a96174bc-de34-4892-927b-b7eb234d1794&redirect_uri=http%3A%2F%2Flocalhost%3A4000%2Fintegration%2Fnotion%2Fcallback&state=x6FYlEiFfwvxtuOuuN7oFMjJPOpRBE"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

integration_name
string
required

Currently supported integrations are "notion" and "confluence". More integrations will be added in the future.

Response

200 - application/json
url
string

URL to connect to the integration

Example:

"https://api.notion.com/v1/oauth/authorize?response_type=code&client_id=a96174bc-de34-4892-927b-b7eb234d1794&redirect_uri=http%3A%2F%2Flocalhost%3A4000%2Fintegration%2Fnotion%2Fcallback&state=x6FYlEiFfwvxtuOuuN7oFMjJPOpRBE"