Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the team
Response
Array of connections
The response is of type object[]
.
curl --request GET \
--url https://api.chartbrew.com/team/{team_id}/connections \
--header 'Authorization: Bearer <token>'
[
{
"id": 123,
"team_id": 123,
"project_ids": [
"<string>"
],
"oauth_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"type": "mongodb",
"subType": "timescaledb",
"active": true,
"ssl": false,
"sslMode": "require"
}
]
Get all connections for a team or a project
curl --request GET \
--url https://api.chartbrew.com/team/{team_id}/connections \
--header 'Authorization: Bearer <token>'
[
{
"id": 123,
"team_id": 123,
"project_ids": [
"<string>"
],
"oauth_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"type": "mongodb",
"subType": "timescaledb",
"active": true,
"ssl": false,
"sslMode": "require"
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the team
Array of connections
The response is of type object[]
.