POST
/
api
/
v1
/
sources
/
add
/
curl --request POST \
  --url https://api.camelai.com/api/v1/sources/add/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "account_name": "<string>",
  "type": "SUPABASE"
}'
{
  "id": 123,
  "account_name": "<string>",
  "type": "SUPABASE",
  "created_at": "2023-11-07T05:31:56Z",
  "is_fully_configured": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Serializer for Connection model.

Response

200 - application/json

Serializer for Connection model.