GET
/
custom
/
org
/
{organization_uuid}
/
reports
/
proposals
/
constituents
curl --request GET \
  --url https://api.tilt.io/custom/org/{organization_uuid}/reports/proposals/constituents/ \
  --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": [
    {
      "proposal_count": 123,
      "proposal_statuses": {
        "completed": 123,
        "pending": 123,
        "failed": 123
      },
      "orders": {
        "buy": {
          "notional": {
            "amount": "<string>",
            "count": 123
          },
          "qty": {
            "amount": "<string>",
            "count": 123
          }
        },
        "sell": {
          "notional": {
            "amount": "<string>",
            "count": 123
          },
          "qty": {
            "amount": "<string>",
            "count": 123
          }
        }
      },
      "ticker": "<string>"
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

organization_uuid
string
required

Query Parameters

end_date
string

Filter proposals created on or before this date (YYYY-MM-DD)

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

start_date
string

Filter proposals created on or after this date (YYYY-MM-DD)

symbol
string

Filter by ticker symbol

Response

200 - application/json

The response is of type object.