No description available.
Input
Encoding
application/jsonfolderId
string
Required
No description available.
subjectUri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Output
Encoding
application/jsoncreatedAt
stringdatetime
Required
An RFC 3339 formatted timestamp.
folderId
string
Required
No description available.
subjectUri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
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": [
"folderId",
"subjectUri"
],
"properties": {
"folderId": {
"type": "string"
},
"subjectUri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"subjectUri",
"folderId",
"createdAt"
],
"properties": {
"folderId": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"subjectUri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
}
}