Skip to main content
POST
/
v0
/
history
/
bulk
/
updates
/v0/history/bulk/updates
curl --request POST \
  --url https://example.com/api/scan/v0/history/bulk/updates \
  --header 'Content-Type: application/json' \
  --data '
{
  "start_record_time": "2023-11-07T05:31:56Z",
  "end_record_time": "2023-11-07T05:31:56Z",
  "page_size": 500,
  "next_page_token": "<string>"
}
'
{
  "object_refs": [
    {
      "url": "<string>",
      "digest": "<string>"
    }
  ],
  "next_page_token": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.canton.network/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
start_record_time
string<date-time>
required

The returned objects must include all updates with record time greater than start_record_time (but may also include updates before it).

end_record_time
string<date-time>
required

The returned objects must include all updates with record time at most end_record_time (but may also include updates after it).

page_size
integer<int32>
required

The maximum number of objects returned for this request.

Required range: 1 <= x <= 1000
next_page_token
string

The pagination token returned from a previous call to this endpoint with the same arguments.

Response

ok

object_refs
object[]
required

The list of references to the bulk storage objects containing the updates.

next_page_token
string

When requesting the next page of results, pass this as after to the next ListBulkUpdateHistoryObjectsRequest invocation. Will be absent when there are no more pages.