GET
/
sources
/
{source_id}
/
filter_segments
curl --request GET \
  --url https://app.getcensus.com/api/v1/sources/{source_id}/filter_segments \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "pagination": {
    "total_records": 14,
    "per_page": 25,
    "prev_page": 1,
    "page": 2,
    "next_page": 3,
    "last_page": 10
  },
  "data": [
    {
      "type": "segment",
      "id": 18,
      "name": "priority accounts",
      "model_id": 9,
      "dataset_id": 12,
      "query": "SELECT * FROM (\n  SELECT 1 AS id, 'Planet Express'::text AS company_name\n) AS census_1d19740e93f711b22efaea201fcf3f8f\nWHERE (\"id\" IS NOT NULL )\n",
      "record_count": 12540,
      "created_at": "2021-10-20T02:43:07.120Z",
      "updated_at": "2021-10-20T02:50:35.477Z",
      "resource_identifier": "segment:priority-accounts",
      "molecules": [
        {
          "attribute": "last_seen_at",
          "attribute_type": "property",
          "operator": "isnotnull",
          "value": "id"
        }
      ],
      "filter_segment_source_object_id": 32,
      "cohorts": [
        {
          "id": 18,
          "name": "Treatment A",
          "percentage": 50,
          "is_control": true,
          "created_at": "2021-10-20T02:43:07.120Z",
          "resource_identifier": "cohort:treatment-a"
        }
      ]
    }
  ]
}

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

Query Parameters

name
string

A partial or full name to search for matching filter segments. Supports case-insensitive and fuzzy matching.

page
number
default:1

Designates which page of results to return. Always starts at 1. If 0 is specified, it defaults to 1.

per_page
number
default:25

Determines the number of results on each page. It can't exceed 100.

Required range: x <= 100
order
enum<string>
default:desc

Organizes the results based on their creation time, either ascending or descending.

Available options:
asc,
desc

Response

200 - application/json
Successfully retrieved the list of segments.

A successfully fetched list of results.

status
enum<string>
required

The outcome of the request

Available options:
success
Example:

"success"

pagination
object
required

An object to help you navigate the list of results.

data
object[]
required

The list of results.