GET
/
custom
/
org
/
{organization_uuid}
/
reports
/
proposals
curl --request GET \
  --url https://api.tilt.io/custom/org/{organization_uuid}/reports/proposals/ \
  --header 'X-Api-Key: <api-key>'
{
  "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
      }
    }
  }
}

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)

start_date
string

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

Response

200 - application/json

The response is of type object.