123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- - httpMethods:
- - POST
- uri: userDefined/yeah
- metadata:
- groupName: '1. Group 1'
- title: 'User defined'
- description: 'This endpoint allows you to do something.'
- authenticated: false
- headers:
- Content-Type: application/json
- Accept: application/json
- urlParameters: {}
- queryParameters:
- speed:
- name: speed
- description: How fast the thing should be done. Can be `slow` or `fast`.
- required: false
- example: fast
- type: string
- bodyParameters:
- something:
- name: something
- description: The things we should do.
- required: true
- example:
- - string 1
- - string 2
- type: 'string[]'
- responses:
- - status: 200
- description: 'When the thing was done smoothly.'
- content:
- hey: "ho ho ho"
- responseFields:
- hey:
- name: hey
- description: Who knows?
- type: string
- - httpMethods:
- - GET
- uri: withBeforeGroup
- metadata:
- groupName: '5. Group 5'
- beforeGroup: '2. Group 2'
- title:
- description:
- authenticated: false
- headers: {}
- urlParameters: {}
- queryParameters: {}
- bodyParameters: {}
- responses: {}
- responseFields: {}
- - httpMethods:
- - GET
- uri: withAfterGroup
- metadata:
- groupName: '4. Group 4'
- afterGroup: '5. Group 5'
- title:
- description:
- authenticated: false
- headers: {}
- urlParameters: {}
- queryParameters: {}
- bodyParameters: {}
- responses: {}
- responseFields: {}
- - httpMethods:
- - GET
- uri: belongingToAnEarlierBeforeGroup
- metadata:
- groupName: '5. Group 5'
- title:
- description:
- authenticated: false
- headers: {}
- urlParameters: {}
- queryParameters: {}
- bodyParameters: {}
- responses: {}
- responseFields: {}
|