curl --request POST \
--url https://api.polymarketexchange.com/v1/trading/orders/replace/list \
--header 'Content-Type: application/json' \
--data '
{
"requests": [
{
"orderId": "<string>",
"clordId": "<string>",
"symbol": "<string>",
"price": "<string>",
"orderQty": "<string>",
"timeInForce": "TIME_IN_FORCE_DAY",
"stopPrice": "<string>",
"minQty": "<string>",
"allOrNone": true,
"participateDontInitiate": true,
"strictLimit": true,
"goodTillTime": "2023-11-07T05:31:56Z",
"bestLimit": true,
"immediatelyExecutableLimit": true,
"manualOrderIndicator": "MANUAL_ORDER_INDICATOR_MANUAL"
}
]
}
'{
"responses": [
{}
]
}Requests modification of multiple working orders
curl --request POST \
--url https://api.polymarketexchange.com/v1/trading/orders/replace/list \
--header 'Content-Type: application/json' \
--data '
{
"requests": [
{
"orderId": "<string>",
"clordId": "<string>",
"symbol": "<string>",
"price": "<string>",
"orderQty": "<string>",
"timeInForce": "TIME_IN_FORCE_DAY",
"stopPrice": "<string>",
"minQty": "<string>",
"allOrNone": true,
"participateDontInitiate": true,
"strictLimit": true,
"goodTillTime": "2023-11-07T05:31:56Z",
"bestLimit": true,
"immediatelyExecutableLimit": true,
"manualOrderIndicator": "MANUAL_ORDER_INDICATOR_MANUAL"
}
]
}
'{
"responses": [
{}
]
}