openapi: 3.2.0 info: version: admin-v1 title: Admin API V1 Customer Products API servers: - url: https://dogfood.commerce.insitesandbox.com security: [] tags: - name: Customer Products paths: /api/v1/admin/CustomerProducts: get: tags: - Customer Products summary: Returns the EntitySet CustomerProducts operationId: CustomerProducts_Get parameters: - name: $expand in: query description: Expands related entities inline. required: false schema: type: string - name: $filter in: query description: Filters the results, based on a Boolean condition. required: false schema: type: string - name: $select in: query description: Selects which properties to include in the response. required: false schema: type: string - name: $apply in: query description: Aggregates the results according to one or more transformations. required: false schema: type: string - name: $orderby in: query description: Sorts the results. required: false schema: type: string - name: $top in: query description: Returns only the first n results. required: false schema: type: integer format: int32 - name: $skip in: query description: Skips the first n results. required: false schema: type: integer format: int32 - name: $count in: query description: Includes a count of the matching results in the response. required: false schema: type: boolean responses: '200': description: OK content: '*/*': schema: type: object deprecated: false security: - access_token: [] post: tags: - Customer Products summary: Post a new entity to EntitySet CustomerProducts operationId: CustomerProducts_Post requestBody: content: application/json: schema: $ref: '#/components/schemas/Insite.Data.Entities.CustomerProduct' description: The entity to post required: true responses: '200': description: OK content: '*/*': schema: type: object deprecated: false security: - access_token: [] /api/v1/admin/CustomerProducts({id}): get: tags: - Customer Products summary: Returns the entity with the key from CustomerProducts operationId: CustomerProducts_GetById parameters: - name: id in: path description: 'key: id' required: true schema: type: string format: uuid - name: $expand in: query description: Expands related entities inline. required: false schema: type: string - name: $select in: query description: Selects which properties to include in the response. required: false schema: type: string responses: '200': description: OK content: '*/*': schema: type: object deprecated: false security: - access_token: [] put: tags: - Customer Products summary: Replace entity in EntitySet CustomerProducts operationId: CustomerProducts_PutById parameters: - name: id in: path description: 'key: id' required: true schema: type: string format: uuid requestBody: content: application/json: schema: $ref: '#/components/schemas/Insite.Data.Entities.CustomerProduct' description: The entity to put required: true responses: '200': description: OK content: '*/*': schema: type: object deprecated: false security: - access_token: [] delete: tags: - Customer Products summary: Delete entity in EntitySet CustomerProducts operationId: CustomerProducts_DeleteById parameters: - name: id in: path description: 'key: id' required: true schema: type: string format: uuid - name: If-Match in: header description: If-Match header required: false schema: type: string responses: '200': description: OK content: '*/*': schema: type: object deprecated: false security: - access_token: [] patch: tags: - Customer Products summary: Update entity in EntitySet CustomerProducts operationId: CustomerProducts_PatchById parameters: - name: id in: path description: 'key: id' required: true schema: type: string format: uuid requestBody: content: application/json: schema: $ref: '#/components/schemas/Insite.Data.Entities.CustomerProduct' description: The entity to patch required: true responses: '200': description: OK content: '*/*': schema: type: object deprecated: false security: - access_token: [] /api/v1/admin/CustomerProducts/Default.Default(): get: tags: - Customer Products summary: Call operation Default operationId: CustomerProducts_Default responses: '200': description: OK content: '*/*': schema: type: object deprecated: false security: - access_token: [] /api/v1/admin/customerproducts/delete: delete: tags: - Customer Products operationId: CustomerProducts_DeleteRoute parameters: - name: ids in: query required: true explode: true schema: type: array items: type: string format: uuid responses: '200': description: OK content: '*/*': schema: type: object deprecated: false security: - access_token: [] /api/v1/admin/customerproducts({key})/customproperties({custompropertyKey}): get: tags: - Customer Products operationId: CustomerProducts_GetCustomPropertyByKeyAndCustompropertykey parameters: - name: key in: path required: true schema: type: string format: uuid - name: custompropertyKey in: path required: true schema: type: string format: uuid - name: $expand in: query description: Expands related entities inline. required: false schema: type: string - name: $select in: query description: Selects which properties to include in the response. required: false schema: type: string responses: '200': description: OK content: '*/*': schema: type: object deprecated: false security: - access_token: [] components: schemas: Insite.Data.Entities.CustomerProduct: required: - name - unitOfMeasure type: object properties: id: format: uuid type: string example: 00000000-0000-0000-0000-000000000000 customerId: format: uuid type: string example: 00000000-0000-0000-0000-000000000000 productId: format: uuid type: string example: 00000000-0000-0000-0000-000000000000 name: maxLength: 50 minLength: 0 type: string unitOfMeasure: maxLength: 50 minLength: 0 type: string createdOn: format: date-time type: string createdBy: type: string modifiedOn: format: date-time type: string modifiedBy: type: string securitySchemes: access_token: type: apiKey description: Token used to access storefront API. name: access_token in: query