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

40 lines
906 B
Plaintext
Raw Permalink 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: {
clipId: {
type: 'string',
format: 'misskey:id',
description: 'クリップのid。',
},
noteId: {
type: 'string',
format: 'misskey:id',
description: 'ートのid。',
},
},
required: [
'clipId',
'noteId',
],
},
res: {},
errors: {
'b80525c6-97f7-49d7-a42d-ebccd49cfd52': {
id: 'b80525c6-97f7-49d7-a42d-ebccd49cfd52',
code: 'NO_SUCH_CLIP',
description: 'クリップが存在しません。',
},
'aff017de-190e-434b-893e-33a9ff5049d8': {
id: 'aff017de-190e-434b-893e-33a9ff5049d8',
code: 'NO_SUCH_NOTE',
description: 'ノートが存在しません。',
},
},
}