openapi: 3.0.1 info: title: Core AccessGroup CustomerGroup API version: core tags: - name: CustomerGroup paths: /lists/customerGroups/{guid}: get: tags: - CustomerGroup summary: Find with GUID description: "| Property | Description |\r\n| ------------------------- | ------------------------------------------------------------------------ |\r\n| GUID | The GUID associated to the customer group |\r\n| Description | The description of the customer group |\r\n| IsDeleted | Whether the customer group is deleted |" operationId: CustomerGroup_Get parameters: - name: guid in: path required: true schema: type: string format: uuid - name: udf in: query schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/ApiResourceResultEntity[ApiIntegratorCustomerGroupResource]' /lists/customerGroups: get: tags: - CustomerGroup summary: Find with Filters description: "| Property | Description |\r\n| ------------------------- | ------------------------------------------------------------------------ |\r\n| GUID | The GUID associated to the customer group |\r\n| Description | The description of the customer group |\r\n| IsDeleted | Whether the customer group is deleted |" operationId: CustomerGroup_GetCollection parameters: - name: filter in: query schema: type: string - name: max in: query schema: type: integer format: int32 - name: page in: query schema: type: integer format: int32 - name: includeCount in: query schema: type: boolean - name: udf in: query schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/ApiResourceResultCollection[ApiIntegratorCustomerGroupResource]' components: schemas: ApiIntegratorCustomerGroupResource: type: object properties: Description: type: string IsDeleted: type: boolean GUID: type: string format: uuid example: 00000000-0000-0000-0000-000000000000 ApiResourceErrors: type: object properties: errors: type: string ApiResourceResultCollectionExtra: type: object properties: count: type: integer format: int32 ApiResourceResultCollection[ApiIntegratorCustomerGroupResource]: type: object properties: resource: type: array items: $ref: '#/components/schemas/ApiIntegratorCustomerGroupResource' extra: $ref: '#/components/schemas/ApiResourceResultCollectionExtra' errors: $ref: '#/components/schemas/ApiResourceErrors' status: $ref: '#/components/schemas/ApiResourceStatus' ApiResourceResultEntityExtra: type: object properties: expand: type: object additionalProperties: type: object additionalProperties: type: object include: type: object additionalProperties: type: array items: type: object additionalProperties: type: object ApiResourceResultEntity[ApiIntegratorCustomerGroupResource]: type: object properties: resource: $ref: '#/components/schemas/ApiIntegratorCustomerGroupResource' links: $ref: '#/components/schemas/ApiResourceResultEntityLinks' extra: $ref: '#/components/schemas/ApiResourceResultEntityExtra' errors: $ref: '#/components/schemas/ApiResourceErrors' status: $ref: '#/components/schemas/ApiResourceStatus' ApiResourceResultEntityLinks: type: object properties: self: type: string associations: type: array items: type: string expand: type: array items: type: string operations: type: array items: type: string ApiResourceStatus: type: object properties: id: type: integer format: int32 isSuccess: type: boolean