openapi: 3.0.0 info: title: FlowAccount Open BatchImport ProductUnit API version: 1.0.0 servers: - url: https://openapi.flowaccount.com/sandbox description: The sandbox server - url: https://openapi.flowaccount.com/v3-alpha description: The prod server security: - bearer: [] tags: - name: ProductUnit paths: /{culture}/products/units: get: tags: - ProductUnit operationId: ProductUnit_GetProductUnitList parameters: - name: culture in: path required: true schema: type: string x-position: 1 responses: '200': description: '' content: application/octet-stream: schema: type: string format: binary security: - bearer: [] post: tags: - ProductUnit operationId: ProductUnit_CreateProductUnit parameters: - name: culture in: path required: true schema: type: string x-position: 2 requestBody: x-name: productunit content: application/json: schema: $ref: '#/components/schemas/ProductUnit' required: true x-position: 1 responses: '200': description: '' content: application/octet-stream: schema: type: string format: binary security: - bearer: [] /{culture}/products/units/{id}: put: tags: - ProductUnit operationId: ProductUnit_UpdateProductUnit parameters: - name: id in: path required: true schema: type: integer format: int64 x-position: 2 - name: culture in: path required: true schema: type: string x-position: 3 requestBody: x-name: productunit content: application/json: schema: $ref: '#/components/schemas/ProductUnit' required: true x-position: 1 responses: '200': description: '' content: application/octet-stream: schema: type: string format: binary security: - bearer: [] delete: tags: - ProductUnit operationId: ProductUnit_DeleteProductUnit parameters: - name: id in: path required: true schema: type: integer format: int64 x-position: 1 - name: culture in: path required: true schema: type: string x-position: 2 responses: '200': description: '' content: application/octet-stream: schema: type: string format: binary security: - bearer: [] components: schemas: ProductUnit: type: object additionalProperties: false required: - name properties: id: type: integer format: int64 name: type: string maxLength: 255 minLength: 0 isShare: type: boolean isDelete: type: boolean securitySchemes: bearer: type: http description: Specify the authorization token. scheme: bearer bearerFormat: Reference x-generator: NSwag v13.11.3.0 (NJsonSchema v10.4.4.0 (Newtonsoft.Json v13.0.0.0))