Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
List of available integrations retrieved successfully
curl --request GET \
--url https://prod.featherhq.com/api/v1/integrations \
--header 'Authorization: Bearer <token>'{
"integrations": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"status": "ACTIVE",
"type": "CALENDAR",
"subType": "YCMB",
"logoUrl": "<string>",
"websiteUrl": "<string>",
"requiredConfig": [
{
"key": "<string>"
}
],
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}List all available integrations in the platform
curl --request GET \
--url https://prod.featherhq.com/api/v1/integrations \
--header 'Authorization: Bearer <token>'{
"integrations": [
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"status": "ACTIVE",
"type": "CALENDAR",
"subType": "YCMB",
"logoUrl": "<string>",
"websiteUrl": "<string>",
"requiredConfig": [
{
"key": "<string>"
}
],
"createdAt": "<string>",
"updatedAt": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
List of available integrations retrieved successfully
Show child attributes