mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-09 20:47:44 +00:00
43 lines
883 B
YAML
43 lines
883 B
YAML
get:
|
|
summary: TODO
|
|
description: TODO
|
|
security:
|
|
- BearerAuth: []
|
|
tags:
|
|
- Account
|
|
operationId: getAccounts
|
|
parameters:
|
|
- $ref: ../components/parameters/query/$select.yaml
|
|
- $ref: ../components/parameters/header/page-size.yaml
|
|
responses:
|
|
"200":
|
|
$ref: ../components/responses/Unspecified200.yaml
|
|
|
|
post:
|
|
summary: TODO
|
|
description: TODO
|
|
security:
|
|
- BearerAuth: []
|
|
tags:
|
|
- Account
|
|
operationId: createAccounts
|
|
requestBody:
|
|
$ref: ../components/requestBodies/AccountModel.yaml
|
|
responses:
|
|
"200":
|
|
$ref: ../components/responses/Unspecified200.yaml
|
|
|
|
put:
|
|
summary: TODO
|
|
description: TODO
|
|
security:
|
|
- BearerAuth: []
|
|
tags:
|
|
- Account
|
|
operationId: updateAccounts
|
|
requestBody:
|
|
$ref: ../components/requestBodies/AccountModel.yaml
|
|
responses:
|
|
"200":
|
|
$ref: ../components/responses/Unspecified200.yaml
|