diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api/swagger.yaml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/api/swagger.yaml b/docs/api/swagger.yaml index c2e5c5fc3..d10aa5daa 100644 --- a/docs/api/swagger.yaml +++ b/docs/api/swagger.yaml @@ -3648,6 +3648,41 @@ paths: summary: Block account with id. tags: - accounts + /api/v1/accounts/{id}/featured_tags: + get: + description: 'THIS ENDPOINT IS CURRENTLY NOT FULLY IMPLEMENTED: it will always return an empty array.' + operationId: accountsFeaturedTags + parameters: + - description: The id of the account. + in: path + name: id + required: true + type: string + produces: + - application/json + responses: + "200": + description: "" + schema: + items: + type: object + type: array + "400": + description: bad request + "401": + description: unauthorized + "404": + description: not found + "406": + description: not acceptable + "500": + description: internal server error + security: + - OAuth2 Bearer: + - read:accounts + summary: Get an array of target account's featured tags. + tags: + - accounts /api/v1/accounts/{id}/follow: post: consumes: |