openapi: 3.0.0 info: title: Account Service description: Account service is responsible for managing account, account settings, sources etc. You can find out more details about this service on this [documentation](https://docs.google.com/document/d/1xkj8vdlbJWRsoAnhsvCtJoshm0IhjhWH2jaSC69t2jc/edit#). You can always refer swagger `Find out more about Swagger` section below for more details. Also, how to use `swagger with YAML` on this [link](https://editor.swagger.io/). version: 1.0.0 contact: email: rishi.masurkar@anyonehome.com servers: - url: http://localhost:81/api tags: - name: Account description: externalDocs: description: Find out more url: https://github.com/AnyoneHome/AccountService - name: Account Billing description: - name: Account Setting description: externalDocs: description: Find out more url: https://github.com/AnyoneHome/AccountService paths: /account/get: $ref: "/apidocs/paths/account/get.yaml" /account/list: $ref: "/apidocs/paths/account/list.yaml" /account/create: $ref: "/apidocs/paths/account/create.yaml" /account/update: $ref: "/apidocs/paths/account/update.yaml" /account/billing/list: $ref: "/apidocs/paths/account/billing/list.yaml" /account/billing/create: $ref: "/apidocs/paths/account/billing/create.yaml" /account/billing/update: $ref: "/apidocs/paths/account/billing/update.yaml" /account/setting/list: $ref: "/apidocs/paths/account/setting/list.yaml" /account/setting/create: $ref: "/apidocs/paths/account/setting/create.yaml" /account/setting/update: $ref: "/apidocs/paths/account/setting/update.yaml" externalDocs: description: "Find out more about OpenApi" url: "https://swagger.io/specification/"