本人のPDSにある現在レコードを取得し、Nagi AppViewへ即時反映する。
Input
Encoding
application/jsoncid
stringcid
Required
A content identifier (CID) referencing immutable data.
maxLength: 128 bytesuri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
maxLength: 2048 bytesOutput
Encoding
application/jsoncid
stringcid
Required
A content identifier (CID) referencing immutable data.
indexed
boolean
Required
No description available.
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Errors
AuthRequired
InvalidRecord
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": [
"uri",
"cid"
],
"properties": {
"cid": {
"type": "string",
"format": "cid",
"maxLength": 128
},
"uri": {
"type": "string",
"format": "at-uri",
"maxLength": 2048
}
}
},
"encoding": "application/json"
},
"errors": [
{
"name": "AuthRequired"
},
{
"name": "InvalidRecord"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid",
"indexed"
],
"properties": {
"cid": {
"type": "string",
"format": "cid",
"maxLength": 128
},
"uri": {
"type": "string",
"format": "at-uri",
"maxLength": 2048
},
"indexed": {
"type": "boolean",
"const": true
}
}
},
"encoding": "application/json"
},
"description": "本人のPDSにある現在レコードを取得し、Nagi AppViewへ即時反映する。"
}