GET
/
v1
/
portfolios
/
{portfolio_id}
/
orders
/
{order_id}
/
edit_history
List Order Edit History
curl --request GET \
  --url https://api.prime.coinbase.com/v1/portfolios/{portfolio_id}/orders/{order_id}/edit_history
{
  "order_id": "<string>",
  "order_edit_history": [
    {
      "price": "<string>",
      "size": "<string>",
      "display_size": "<string>",
      "stop_price": "<string>",
      "stop_limit_price": "<string>",
      "end_time": "2023-11-07T05:31:56Z",
      "accept_time": "2023-11-07T05:31:56Z",
      "client_order_id": "<string>"
    }
  ],
  "edit_history": [
    {
      "price": "100",
      "base_quantity": "1",
      "quote_value": "100",
      "display_base_size": "1.00",
      "display_quote_size": "1.00",
      "stop_price": "120",
      "expiry_time": "2021-05-31T10:59:59.000Z",
      "accept_time": "2021-06-20T10:59:59.000Z",
      "client_order_id": "123"
    }
  ]
}

Path Parameters

portfolio_id
string
required

The portfolio ID

order_id
string
required

The order ID

Response

200 - application/json

A successful response.

order_id
string
required

The order ID

edit_history
The list of edits to the order · object[]
required

The history of order edits

Example:
[
{
"price": "100",
"base_quantity": "1",
"quote_value": "100",
"display_base_size": "1.00",
"display_quote_size": "1.00",
"stop_price": "120",
"expiry_time": "2021-05-31T10:59:59.000Z",
"accept_time": "2021-06-20T10:59:59.000Z",
"client_order_id": "123"
}
]
order_edit_history
LimitOrderEdit represents an order edit that is accepted · object[]

The history of order edits (deprecated: use edit_history instead)