GET
/
custom
/
org
/
{organization_uuid}
/
reports
/
ticker_constraints
curl --request GET \
  --url https://api.tilt.io/custom/org/{organization_uuid}/reports/ticker_constraints/ \
  --header 'X-Api-Key: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "ticker": "<string>",
      "constraints": [
        {
          "constraint_type": "no_hold",
          "client_count": 123,
          "is_org_wide": true,
          "min_start_from": "2023-12-25",
          "max_start_from": "2023-12-25",
          "min_expires_at": "2023-12-25",
          "max_expires_at": "2023-12-25"
        }
      ]
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

organization_uuid
string
required

Query Parameters

constraint_type
enum<string>

Filter by constraint type

Available options:
no_hold,
no_trade
page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

symbol
string

Filter by ticker symbol

Response

200 - application/json

The response is of type object.