openapi: 3.2.0 info: title: Fast Get Share API version: 0.1.0 tags: - name: GetShare paths: /getShare/{id}/manage: get: summary: Get Share Manage description: Authed single-fetch of a share link with everything the full-page editor needs. operationId: get_share_manage_getShare__id__manage_get parameters: - name: id in: path required: true schema: type: string title: Id responses: '200': description: Successful Response content: application/json: schema: {} '422': description: Validation Error content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' tags: - GetShare components: schemas: ValidationError: properties: loc: items: anyOf: - type: string - type: integer type: array title: Location msg: type: string title: Message type: type: string title: Error Type type: object required: - loc - msg - type title: ValidationError HTTPValidationError: properties: detail: items: $ref: '#/components/schemas/ValidationError' type: array title: Detail type: object title: HTTPValidationError