Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
curl --request POST \
  --url https://api.blaxel.ai/v0/integrations/connections \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "metadata": {
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "createdBy": "<string>",
    "updatedBy": "<string>",
    "displayName": "<string>",
    "labels": {},
    "name": "<string>",
    "plan": "<any>",
    "url": "<string>",
    "workspace": "<string>"
  },
  "spec": {
    "config": {},
    "integration": "<string>",
    "sandbox": true,
    "secret": {}
  }
}'{
  "metadata": {
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "createdBy": "<string>",
    "updatedBy": "<string>",
    "displayName": "<string>",
    "labels": {},
    "name": "<string>",
    "plan": "<any>",
    "url": "<string>",
    "workspace": "<string>"
  },
  "spec": {
    "config": {},
    "integration": "<string>",
    "sandbox": true,
    "secret": {}
  }
}Create a connection for an integration.
curl --request POST \
  --url https://api.blaxel.ai/v0/integrations/connections \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "metadata": {
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "createdBy": "<string>",
    "updatedBy": "<string>",
    "displayName": "<string>",
    "labels": {},
    "name": "<string>",
    "plan": "<any>",
    "url": "<string>",
    "workspace": "<string>"
  },
  "spec": {
    "config": {},
    "integration": "<string>",
    "sandbox": true,
    "secret": {}
  }
}'{
  "metadata": {
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "createdBy": "<string>",
    "updatedBy": "<string>",
    "displayName": "<string>",
    "labels": {},
    "name": "<string>",
    "plan": "<any>",
    "url": "<string>",
    "workspace": "<string>"
  },
  "spec": {
    "config": {},
    "integration": "<string>",
    "sandbox": true,
    "secret": {}
  }
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?