POST
/
api
/
v1
/
sources
/
add
/
snowflake
/
curl --request POST \
  --url https://api.camelai.com/api/v1/sources/add/snowflake/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "type": "snowflake",
  "account": "myaccount.us-east-1",
  "user": "myuser",
  "password": "mypassword",
  "warehouse": "COMPUTE_WH"
}'
{
  "id": 123,
  "public_key_sql": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Serializer for Snowflake connection configuration.

Response

200
application/json

The response is of type object.