Last active
July 30, 2018 19:55
-
-
Save chrisobriensp/bdab7e92e16590a399e3aa8a33166cfb to your computer and use it in GitHub Desktop.
Default Open API definition for my functions, as generated by Azure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
info: | |
title: cob-gen-functions.azurewebsites.net | |
version: 1.0.0 | |
host: cob-gen-functions.azurewebsites.net | |
basePath: / | |
schemes: | |
- https | |
- http | |
paths: | |
/api/FetchUserDetails: | |
post: | |
operationId: /api/FetchUserDetails/post | |
produces: [] | |
consumes: [] | |
parameters: [] | |
description: >- | |
Replace with Operation Object | |
#http://swagger.io/specification/#operationObject | |
responses: | |
'200': | |
description: Success operation | |
security: | |
- apikeyQuery: [] | |
options: | |
operationId: /api/FetchUserDetails/options | |
produces: [] | |
consumes: [] | |
parameters: [] | |
description: >- | |
Replace with Operation Object | |
#http://swagger.io/specification/#operationObject | |
responses: | |
'200': | |
description: Success operation | |
security: | |
- apikeyQuery: [] | |
/api/UpdateUserDetails: | |
post: | |
operationId: /api/UpdateUserDetails/post | |
produces: [] | |
consumes: [] | |
parameters: [] | |
description: >- | |
Replace with Operation Object | |
#http://swagger.io/specification/#operationObject | |
responses: | |
'200': | |
description: Success operation | |
security: | |
- apikeyQuery: [] | |
options: | |
operationId: /api/UpdateUserDetails/options | |
produces: [] | |
consumes: [] | |
parameters: [] | |
description: >- | |
Replace with Operation Object | |
#http://swagger.io/specification/#operationObject | |
responses: | |
'200': | |
description: Success operation | |
security: | |
- apikeyQuery: [] | |
definitions: {} | |
securityDefinitions: | |
apikeyQuery: | |
type: apiKey | |
name: code | |
in: query |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment