openapi: 3.2.0 info: title: 701x API V1 Customization API description: 701x API version: v1 tags: - name: Customization paths: /Customization: get: tags: - Customization parameters: - name: CompanyId in: query schema: type: string format: uuid - name: FarmId in: query schema: type: - string - 'null' format: uuid - name: UserId in: query schema: type: - string - 'null' format: uuid - name: Screen in: query schema: type: - string - 'null' - name: Version in: query schema: type: - number - 'null' format: double responses: '200': description: Success content: text/plain: schema: type: array items: $ref: '#/components/schemas/Customization' application/json: schema: type: array items: $ref: '#/components/schemas/Customization' text/json: schema: type: array items: $ref: '#/components/schemas/Customization' '401': description: Unauthorized '403': description: Forbidden security: - oauth2: - API701x summary: Get customization x-summary-source: derived operationId: getCustomization x-operation-id-source: derived post: tags: - Customization requestBody: content: application/json-patch+json: schema: type: - array - 'null' items: $ref: '#/components/schemas/Customization' application/json: schema: type: - array - 'null' items: $ref: '#/components/schemas/Customization' text/json: schema: type: - array - 'null' items: $ref: '#/components/schemas/Customization' application/*+json: schema: type: - array - 'null' items: $ref: '#/components/schemas/Customization' responses: '200': description: Success content: text/plain: schema: type: array items: $ref: '#/components/schemas/Customization' application/json: schema: type: array items: $ref: '#/components/schemas/Customization' text/json: schema: type: array items: $ref: '#/components/schemas/Customization' '401': description: Unauthorized '403': description: Forbidden security: - oauth2: - API701x summary: Create customization x-summary-source: derived operationId: postCustomization x-operation-id-source: derived components: schemas: Customization: type: object properties: id: type: string format: uuid companyId: type: string format: uuid farmId: type: - string - 'null' format: uuid userId: type: - string - 'null' format: uuid screen: type: - string - 'null' version: type: - number - 'null' format: double configuration: {} _ts: type: - number - 'null' format: double additionalProperties: false securitySchemes: oauth2: type: oauth2 flows: authorizationCode: authorizationUrl: https://login.701x.com/connect/authorize tokenUrl: https://login.701x.com/connect/token scopes: api1: Demo API - full access