DataMigrationTaskDto
idFlakeIdRequired
platformstringRequired
Platform from which data is being migrated (e.g., "tebex").
started_atstringRequired
Timestamp when the migration was initiated.
started_byActorDtoRequired
typeenumRequired
Possible enum values
anonymoususerapi_keycustomergame_serverinternaladminplatformglobal_customer
idFlakeIdOptional
store_idFlakeIdRequired
tokenstringRequired
Masked authentication token used for accessing the source platform API.
total_entities_migratedintegerRequired
Number of entities that have been successfully migrated.
completed_atstringOptional
Timestamp when the migration was successfully completed, or null if not completed.
errorstringOptional
Error message if the migration encountered any errors, otherwise null.
failed_atstringOptional
Timestamp when the migration failed, or null if it didn't fail.
total_entities_to_migrateintegerOptional
Total number of entities that need to be migrated, or null if unknown.
Example
{
"id": "411486491630370816",
"platform": "string",
"started_at": "2024-01-01T00:00:00Z",
"started_by": {
"type": "anonymous",
"id": "411486491630370816"
},
"store_id": "411486491630370816",
"token": "string",
"total_entities_migrated": 0,
"error": "string",
"failed_at": "2024-01-01T00:00:00Z",
"completed_at": "2024-01-01T00:00:00Z",
"total_entities_to_migrate": 0
}