POST
/
sources
/
{source_id}
/
models
curl --request POST \
  --url https://app.getcensus.com/api/v1/sources/{source_id}/models \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "New App Users",
  "query": "SELECT * FROM \"users\"",
  "description": "Users that have signed up for our product in the last week."
}'
{
  "status": "created",
  "data": {
    "type": "model",
    "id": 18,
    "name": "New App Users",
    "dataset_id": 12,
    "description": "Users that have signed up for our product in the last week.",
    "query": "SELECT * FROM \"users\"",
    "created_at": "2021-10-20T02:43:07.120Z",
    "updated_at": "2021-10-20T02:50:35.477Z",
    "compiled_query": null,
    "columns": [
      {
        "name": "user_id",
        "type": "character varying (256)"
      },
      {
        "name": "full_name",
        "type": "character varying (256)"
      }
    ],
    "dataset_id=": 12,
    "source_object_id": 20
  }
}

Authorizations

Authorization
string
header
required

Bearer token for the current workspace. Can be retrieved from the Workspace's settings page.

Path Parameters

source_id
integer
required

ID of the source

Body

application/json
name
string
required

The name of this model.

Example:

"New App Users"

query
string
required

The SQL query associated with this model.

Example:

"SELECT * FROM \"users\""

description
string

The description for this model.

Example:

"Users that have signed up for our product in the last week."

Response

201 - application/json
Model created successfully
status
enum<string>

Outcome of the operation.

Available options:
success,
updated,
created,
not_found,
error
Example:

"created"

data
object