jointrashposs/content/ja/.docs-legacy/api/endpoints/i/unpin.json5
2023-07-11 23:48:17 +09:00

36 lines
794 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
summary: '指定したノートをピン留めから解除します。',
description: '指定したノートをピン留めから解除します。',
tags: [
'account',
],
requireCredential: true,
req: {
type: 'object',
properties: {
noteId: {
type: 'string',
format: 'misskey:id',
description: 'ピン留めから解除するートのid。',
},
},
required: [
'noteId',
],
},
res: {
type: 'object',
optional: false,
nullable: false,
ref: 'MeDetailed',
$ref: 'misskey://MeDetailed',
},
errors: {
'454170ce-9d63-4a43-9da1-ea10afe81e21': {
id: '454170ce-9d63-4a43-9da1-ea10afe81e21',
code: 'NO_SUCH_NOTE',
description: '指定されたノートが存在しないか、アクセスが許可されていません。',
},
},
}