GamebeastDocs
Dashboard
Server APICohorts

Create a new cohort

POST
/application/{applicationId}/analytics/v1/cohorts/

Authorization

personalAccessTokenAuth
AuthorizationBearer <token>

Personal access token (prefixed gb_pat_). Acts on behalf of its owner and can never exceed the owner's own permissions. Send it as Authorization: Bearer <token>.

In: header

Path Parameters

applicationId*number

Gamebeast project ID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "https://example.com/application/0/analytics/v1/cohorts/" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "definition": [      [        {          "operator": "and",          "conditions": [            {              "positive": true,              "metric": {                "type": "cohort",                "name": "string",                "definition": null              }            }          ]        }      ]    ]  }'
Empty