swagger: '2.0' info: version: '1.0' title: OAuth Access Token contact: {} host: it.api-dev.honeywell.com basePath: / securityDefinitions: auth: type: basic schemes: - https consumes: - application/json produces: - application/json paths: /v1/oauth/accesstoken: get: description: >- Get the Oauth Access token to try out apigee Apis by passing Client id and client Secret as basic auth of the respective API product. summary: getAccessToken tags: - Access Token - Using Get Method operationId: getAccessToken deprecated: false produces: - application/json parameters: - name: grant_type in: query required: true type: string description: '' responses: 200: description: '' headers: {} /v2/oauth/accesstoken: post: summary: getAccessToken-Using Post tags: - Access Token - Using Post Method operationId: getAccessToken-UsingPost deprecated: false produces: - application/json consumes: - application/x-www-form-urlencoded parameters: - name: Content-Type in: header required: true type: string description: '' - name: grant_type in: formData required: true type: string description: please provide grant type - name: client_id in: formData required: true type: string description: Client id of the API product - name: client_secret in: formData required: true type: string description: Client secret of the API product responses: 200: description: '' headers: {} security: [] security: - auth: [] tags: - name: Access Token - Using Get Method - name: Access Token - Using Post Method