Data Migrations

get
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample: 411486491630370816
Query parameters
limitinteger · int32 · min: 1 · max: 100Optional

The maximum number of items to return in a single request.

afterstring · flake-idOptional

Returns items after the specified ID. Used for forward pagination through results.

Example: 411486491630370816
beforestring · flake-idOptional

Returns items before the specified ID. Used for backward pagination through results.

Example: 411486491630370816
ascbooleanOptional

Determines the sort order of returned items. When true, items are returned in ascending order. When false, items are returned in descending order.

Responses
200

OK

application/json
get
GET /v1/stores/{storeId}/data-migrations HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "id": "411486491630370816",
    "store_id": "411486491630370816",
    "platform": "text",
    "token": "text",
    "error": "text",
    "started_at": "2025-09-13T13:34:40.486Z",
    "failed_at": "2025-09-13T13:34:40.486Z",
    "completed_at": "2025-09-13T13:34:40.486Z",
    "total_entities_to_migrate": 1,
    "total_entities_migrated": 1,
    "started_by": {
      "type": "anonymous",
      "id": "411486491630370816"
    }
  }
]
post
Authorizations
Path parameters
storeIdstring · flake-idRequiredExample: 411486491630370816
Body
headless_tokenstringRequired

The public-facing Headless API token.

plugin_tokenstringRequired

An API token associated to a Tebex game server.

Responses
200

OK

application/json
post
POST /v1/stores/{storeId}/data-migrations/tebex HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 47

{
  "headless_token": "text",
  "plugin_token": "text"
}
[
  {
    "id": "411486491630370816",
    "store_id": "411486491630370816",
    "platform": "text",
    "token": "text",
    "error": "text",
    "started_at": "2025-09-13T13:34:40.486Z",
    "failed_at": "2025-09-13T13:34:40.486Z",
    "completed_at": "2025-09-13T13:34:40.486Z",
    "total_entities_to_migrate": 1,
    "total_entities_migrated": 1,
    "started_by": {
      "type": "anonymous",
      "id": "411486491630370816"
    }
  }
]

Was this helpful?