diff --git a/src/openapi/orders/orders-crud.yaml b/src/openapi/orders/orders-crud.yaml new file mode 100644 index 0000000..9aef48e --- /dev/null +++ b/src/openapi/orders/orders-crud.yaml @@ -0,0 +1,33 @@ +openapi: "3.0.3" +info: + title: ABT Orders CRUD APIs + version: "1.0" + description: CRUD APIs for ABT Orders database. These are NOT the functional APIs from Service Engine. +servers: + - url: https://api.integratielaag.nl/v1 +paths: + /orders: + post: + tags: + - Order + summary: Create a new order. + description: Create a new order. + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/unavailable" + example: + null + responses: + "201": + description: Created +components: + securitySchemes: + bearerToken: + type: http + scheme: bearer + bearerFormat: JWT + schemas: + unavailable: + type: object \ No newline at end of file