Skip to main content
POST
/
portfolio
/
events
/
orders
/
{order_id}
/
decrease
Decrease Order (V2)
curl --request POST \
  --url https://api.elections.kalshi.com/trade-api/v2/portfolio/events/orders/{order_id}/decrease \
  --header 'Content-Type: application/json' \
  --header 'KALSHI-ACCESS-KEY: <api-key>' \
  --header 'KALSHI-ACCESS-SIGNATURE: <api-key>' \
  --header 'KALSHI-ACCESS-TIMESTAMP: <api-key>' \
  --data '
{
  "reduce_to": "10.00"
}
'
{
  "order_id": "<string>",
  "remaining_count": "10.00",
  "client_order_id": "<string>"
}

Authorizations

KALSHI-ACCESS-KEY
string
header
required

Your API key ID

KALSHI-ACCESS-SIGNATURE
string
header
required

RSA-PSS signature of the request

KALSHI-ACCESS-TIMESTAMP
string
header
required

Request timestamp in milliseconds

Path Parameters

order_id
string
required

Order ID

Query Parameters

subaccount
integer

Subaccount number (0 for primary, 1-32 for subaccounts). Defaults to 0.

Body

application/json
reduce_to
string
required

String representation of the number of contracts to reduce to.

Example:

"10.00"

Response

Order decreased successfully

order_id
string
required
remaining_count
string
required

Number of contracts remaining after the decrease.

Example:

"10.00"

client_order_id
string