/v1/channel-connections (GET)
GET
/v1/channel-connections
const url = 'http://localhost:8787/v1/channel-connections';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8787/v1/channel-connections \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Every channel connection configured for this tenant.
Media typeapplication/json
object
connections
required
Array<object>
object
channel
required
string
createdAt
required
string
feedUrl
required
string
id
required
string format: uuid
status
required
string
Example
{ "connections": [ { "channel": "ical", "status": "pending" } ]}No API key context resolved for this request.
Media typeapplication/problem+json
object
code
required
string
detail
required
string
status
required
number
title
required
string
type
required
string
Example
{ "code": "resource_not_found"}