POST
/
api
/
v1
/
custom
/
org
/
{organization_uuid}
/
optimized_proposals
/
list
/
cURL
curl --request POST \
  --url https://api.tilt.io/api/v1/custom/org/{organization_uuid}/optimized_proposals/list/ \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '{
  "status": "pending",
  "client_external_id": "<string>",
  "created_after": "2023-11-07T05:31:56Z",
  "created_before": "2023-11-07T05:31:56Z",
  "min_average_drift": "<string>",
  "min_largest_drift": "<string>",
  "min_turnover": "<string>",
  "min_tax_due": "<string>",
  "min_buy_amount_usd": "<string>",
  "min_sell_amount_usd": "<string>"
}'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "client_external_id": "<string>",
      "client_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "last_updated": "2023-11-07T05:31:56Z",
      "failure_reason": "<string>",
      "average_drift": "<string>",
      "max_drift": "<string>"
    }
  ]
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

organization_uuid
string<uuid>
required

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

Body

Request serializer for filtering optimized proposals.

Response

200 - application/json

The response is of type object.