openapi: 3.1.0 info: title: Zesty Accounts Apps API description: The Zesty.io Accounts API is used to manage users, roles, instances, teams, tokens, ecosystems, webhooks, and apps. It provides administrative control over the organizational structure of a Zesty.io account. All endpoints require authentication via a session token obtained from the Auth API. version: 1.0.0 contact: name: Zesty.io url: https://www.zesty.io/ license: name: Proprietary url: https://www.zesty.io/ servers: - url: https://accounts.api.zesty.io/v1 description: Zesty Accounts API Production Server tags: - name: Apps description: Manage registered applications. paths: /apps: get: operationId: getApps summary: Zesty List all apps description: Returns a list of all registered apps. tags: - Apps security: - sessionToken: [] responses: '200': description: A list of apps. content: application/json: schema: type: object properties: code: type: integer data: type: array items: type: object properties: ZUID: type: string name: type: string url: type: string '401': description: Unauthorized. components: securitySchemes: sessionToken: type: apiKey in: header name: Authorization description: A session token obtained from the Auth API login endpoint. externalDocs: description: Zesty Accounts API Documentation url: https://docs.zesty.io/docs/accounts