openapi: 3.2.0 info: title: LeafLink Unit of Measure API version: '2022-10-31' description: 'This reference specification outlines all the available HTTP operations of the LeafLink API. See the [LeafLink Developer Hub](/api) for guides, how-to, and general information of the API. ' termsOfService: https://www.leaflink.com/terms-and-conditions/ contact: email: support@leaflink.com servers: - url: https://api.leaflink.com description: LeafLink API production URL. - url: https://staging-api.leaflink.com description: LeafLink API staging URL. security: - bearerAuth: [] tags: - name: Unit of Measure paths: /units_of_measure: get: operationId: units_of_measure_list description: List all Unit of Measures summary: List Unit of Measures parameters: - name: ordering required: false in: query description: Which field to use when ordering the results. schema: type: string - name: page required: false in: query description: A page number within the paginated result set. schema: type: integer - name: page_size required: false in: query description: Number of results to return per page. schema: type: integer - name: search required: false in: query description: A search term. schema: type: string - name: LeafLink-Version description: '[API version docs](/api/getting-started/#versioning)' required: false in: header schema: type: string format: date tags: - Unit of Measure security: - tokenAuth: [] - bearerAuth: [] responses: '200': content: application/json: schema: $ref: '#/components/schemas/PaginatedUnifiedUnitOfMeasureList' description: '' headers: RateLimit-Limit: schema: type: integer description: The requests quota in the time window. RateLimit-Remaining: schema: type: integer description: The remaining requests quota in the current window. RateLimit-Reset: schema: type: integer description: The time remaining in the current window, specified in seconds. RateLimit-Policy: schema: type: string description: The quota policy information. '429': description: Rate Limit Error headers: Retry-After: schema: type: integer description: The time remaining before the rejected request can be tried again, specified in seconds. /units_of_measure/{id}: get: operationId: units_of_measure_retrieve description: Get a Unit of Measure by ID summary: Get a Unit of Measure parameters: - in: path name: id schema: type: integer description: A unique integer value identifying this unit of measure. required: true - name: LeafLink-Version description: '[API version docs](/api/getting-started/#versioning)' required: false in: header schema: type: string format: date tags: - Unit of Measure security: - tokenAuth: [] - bearerAuth: [] responses: '200': content: application/json: schema: $ref: '#/components/schemas/UnifiedUnitOfMeasure' description: '' headers: RateLimit-Limit: schema: type: integer description: The requests quota in the time window. RateLimit-Remaining: schema: type: integer description: The remaining requests quota in the current window. RateLimit-Reset: schema: type: integer description: The time remaining in the current window, specified in seconds. RateLimit-Policy: schema: type: string description: The quota policy information. '429': description: Rate Limit Error headers: Retry-After: schema: type: integer description: The time remaining before the rejected request can be tried again, specified in seconds. components: schemas: UnifiedUnitOfMeasure: type: object description: Unified UnitOfMeasure serializer. properties: id: type: integer readOnly: true created_date: type: string format: date-time readOnly: true description: Date and time the resource was created modified_date: type: string format: date-time readOnly: true description: Date and time of the last edit unit: type: string readOnly: true plural: type: string readOnly: true title: Plural Form abbreviation: type: string readOnly: true title: Unit Abbreviation multiple: type: boolean readOnly: true title: Bulk unit of measurement ALLOW_FRACTIONAL: type: boolean readOnly: true title: Allow Fractional Quantity universal_name: type: - string - 'null' readOnly: true title: Universal Unit Name unconvertible: type: boolean readOnly: true title: Unit not convertible base_only: type: boolean readOnly: true title: Base Unit of Measure Only description: This Unit of Measure is meant to be attached only to SubCategories and not to Products required: - ALLOW_FRACTIONAL - abbreviation - base_only - created_date - id - modified_date - multiple - plural - unconvertible - unit - universal_name PaginatedUnifiedUnitOfMeasureList: type: object required: - count - results properties: count: type: integer example: 123 next: type: - string - 'null' format: uri example: http://api.example.org/accounts/?page=4 previous: type: - string - 'null' format: uri example: http://api.example.org/accounts/?page=2 results: type: array items: $ref: '#/components/schemas/UnifiedUnitOfMeasure' securitySchemes: bearerAuth: type: http scheme: bearer bearerFormat: JWT description: 'Authentication is done via access tokens (JWTs). See the [API authentication doc](/api/getting-started/#authentication) for more information. ' tokenAuth: type: apiKey in: header name: Authorization description: Token-based authentication with required prefix "Token"