POST
/
integration
/
{integration_name}
/
add
curl --request POST \
  --url https://api.isosceles.ai/integration/{integration_name}/add \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '""'
{
  "message": "Pages are being added to the brain."
}

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.

Body

application/json
brain_id
string

ID of the brain to add pages to

page_ids
string[]

Array of page IDs to add to the brain

An array of page_ids you want to add

Response

200 - application/json
message
string

Message indicating the pages are being added to the brain

Example:

"Pages are being added to the brain."