diff options
Diffstat (limited to 'support/doc/api')
-rw-r--r-- | support/doc/api/openapi.yaml | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/support/doc/api/openapi.yaml b/support/doc/api/openapi.yaml index 99a725ead..76e78fe53 100644 --- a/support/doc/api/openapi.yaml +++ b/support/doc/api/openapi.yaml | |||
@@ -716,7 +716,7 @@ paths: | |||
716 | - admin | 716 | - admin |
717 | tags: | 717 | tags: |
718 | - Instance Follows | 718 | - Instance Follows |
719 | summary: Follow a list of servers | 719 | summary: Follow a list of actors (PeerTube instance, channel or account) |
720 | responses: | 720 | responses: |
721 | '204': | 721 | '204': |
722 | description: successful operation | 722 | description: successful operation |
@@ -734,28 +734,32 @@ paths: | |||
734 | type: string | 734 | type: string |
735 | format: hostname | 735 | format: hostname |
736 | uniqueItems: true | 736 | uniqueItems: true |
737 | handles: | ||
738 | type: array | ||
739 | items: | ||
740 | type: string | ||
741 | uniqueItems: true | ||
737 | 742 | ||
738 | '/server/following/{host}': | 743 | '/server/following/{hostOrHandle}': |
739 | delete: | 744 | delete: |
740 | summary: Unfollow a server | 745 | summary: Unfollow an actor (PeerTube instance, channel or account) |
741 | security: | 746 | security: |
742 | - OAuth2: | 747 | - OAuth2: |
743 | - admin | 748 | - admin |
744 | tags: | 749 | tags: |
745 | - Instance Follows | 750 | - Instance Follows |
746 | parameters: | 751 | parameters: |
747 | - name: host | 752 | - name: hostOrHandle |
748 | in: path | 753 | in: path |
749 | required: true | 754 | required: true |
750 | description: The host to unfollow | 755 | description: The hostOrHandle to unfollow |
751 | schema: | 756 | schema: |
752 | type: string | 757 | type: string |
753 | format: hostname | ||
754 | responses: | 758 | responses: |
755 | '204': | 759 | '204': |
756 | description: successful operation | 760 | description: successful operation |
757 | '404': | 761 | '404': |
758 | description: host not found | 762 | description: host or handle not found |
759 | 763 | ||
760 | /users: | 764 | /users: |
761 | post: | 765 | post: |