GET
/
integration
/
{integration_name}
/
list
curl --request GET \
  --url https://api.isosceles.ai/integration/{integration_name}/list \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "content": {},
    "created_at": "2024-05-20T06:19:00.209Z",
    "id": "65620",
    "title": "Getting started in Confluence",
    "updated_at": "2024-05-20T06:19:00.209Z",
    "url": "https://shreyaans20.atlassian.net/wiki/spaces/~712020b4e5987a0eaa4fae8878f723efab571b/pages/65620/Getting+started+in+Confluence"
  }
]

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
content
object

Content of the page

created_at
string

Creation timestamp of the page

Example:

"2024-05-20T06:19:00.209Z"

id
string

ID of the page

Example:

"65620"

title
string

Title of the page

Example:

"Getting started in Confluence"

updated_at
string

Last updated timestamp of the page

Example:

"2024-05-20T06:19:00.209Z"

url
string

URL of the page

Example:

"https://shreyaans20.atlassian.net/wiki/spaces/~712020b4e5987a0eaa4fae8878f723efab571b/pages/65620/Getting+started+in+Confluence"