Enqueue migration of game records based on an approved claim.
Input
Encoding
application/jsonclaim
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
claimReview
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsongamesCount
integer
Required
No description available.
jobId
string
Required
No description available.
status
string
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"claim",
"claimReview"
],
"properties": {
"claim": {
"type": "string",
"format": "at-uri"
},
"claimReview": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"jobId",
"status",
"gamesCount"
],
"properties": {
"jobId": {
"type": "string",
"maxLength": 128
},
"status": {
"type": "string",
"maxLength": 64
},
"gamesCount": {
"type": "integer"
}
}
},
"encoding": "application/json"
},
"description": "Enqueue migration of game records based on an approved claim."
}