dev.cartridge.getMigrationJobStatus

cartridge.dev

Documentation

Get the status of a migration background job.

main query

Get the status of a migration background job.

Parameters

jobId string Required

No description available.

Output

Encodingapplication/json
error string Optional

No description available.

jobId string Required

No description available.

results array Optional

No description available.

status string Required

No description available.

Known values: pending, running, completed, failed, paused, cancelled
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "jobId",
        "status"
      ],
      "properties": {
        "error": {
          "type": "string",
          "maxLength": 256
        },
        "jobId": {
          "type": "string",
          "maxLength": 128
        },
        "status": {
          "type": "string",
          "maxLength": 64,
          "knownValues": [
            "pending",
            "running",
            "completed",
            "failed",
            "paused",
            "cancelled"
          ]
        },
        "results": {
          "type": "array",
          "items": {
            "ref": "#migrationResult",
            "type": "ref"
          }
        },
        "progress": {
          "ref": "#progressView",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "jobId"
    ],
    "properties": {
      "jobId": {
        "type": "string",
        "maxLength": 128
      }
    }
  },
  "description": "Get the status of a migration background job."
}
migrationResult object

No description available.

Properties

error string Optional

No description available.

maxLength: 256 bytes
gameUri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

newUri string at-uri Optional

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

status string Required

No description available.

maxLength: 64 bytes
Known values: success, failed, skipped
View raw schema
{
  "type": "object",
  "required": [
    "gameUri",
    "status"
  ],
  "properties": {
    "error": {
      "type": "string",
      "maxLength": 256
    },
    "newUri": {
      "type": "string",
      "format": "at-uri"
    },
    "status": {
      "type": "string",
      "maxLength": 64,
      "knownValues": [
        "success",
        "failed",
        "skipped"
      ]
    },
    "gameUri": {
      "type": "string",
      "format": "at-uri"
    }
  }
}
progressView object

No description available.

Properties

orgProfileDone boolean Optional

No description available.

processed integer Optional

No description available.

total integer Optional

No description available.

View raw schema
{
  "type": "object",
  "properties": {
    "total": {
      "type": "integer"
    },
    "processed": {
      "type": "integer"
    },
    "orgProfileDone": {
      "type": "boolean"
    }
  }
}

Lexicon Garden

@