POST
/
api
/
v3
/
brokerage
/
orders
/
edit
curl --request POST \
  --url https://api.coinbase.com/api/v3/brokerage/orders/edit \
  --header 'Content-Type: application/json' \
  --data '{
  "order_id": "<string>",
  "price": "19000.00",
  "size": "0.001"
}'
{
  "success": true,
  "errors": [
    {
      "edit_failure_reason": "<any>",
      "preview_failure_reason": "<any>"
    }
  ]
}

Body

application/json

Response

200
application/json

A successful response.

The response is of type object.