Skip to main content
POST
/
v0
/
backfilling
/
import-updates
/v0/backfilling/import-updates
curl --request POST \
  --url https://example.com/api/scan/v0/backfilling/import-updates \
  --header 'Content-Type: application/json' \
  --data '
{
  "migration_id": 123,
  "after_update_id": "<string>",
  "limit": 123
}
'
{
  "transactions": [
    {
      "update_id": "<string>",
      "migration_id": 123,
      "workflow_id": "<string>",
      "record_time": "<string>",
      "synchronizer_id": "<string>",
      "effective_at": "<string>",
      "offset": "<string>",
      "root_event_ids": [
        "<string>"
      ],
      "events_by_id": {},
      "external_transaction_hash": "<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
migration_id
integer<int64>
required
after_update_id
string
required

Only return updates with an update id strictly greater than this.

limit
integer<int32>
required

Return at most this many updates. The actual number of updates returned may be smaller.

Response

ok

transactions
object[]
required

An individual item in the update history. May be a transaction or a contract reassignment.