openapi: 3.0.0 info: version: '1.0' title: Partner-Seller-Marketplace description: "**Schneider-electric ecommercemarketplace** \r\nAPI to enable Sellers on Schneider Marketplace sell schneider products to customers.\r\n\r\n**Product**\r\n1. This is a subset of Schneider Electric product catalog that a seller can choose to sell on the Schneider Marketplace.\r\n\r\n**Price**\r\n1. Sellers can get price for the products associated to the seller\r\n2. Sellers can update price for the products associated to the seller\r\n\r\n**Stock**\r\n1. get stock for the products associated to the seller Schneider Marketplace.\r\n2. put stock for products assigned to the seller.\r\n\r\n**Orders**\r\n1. Get orders for a seller from the Schneider Marketplace.\r\n2. Accept orders placed by a buyer on the Schneider Marketplace.\r\n3. Reject an order that a buyer placed on the Schneider Marketplace.\r\n\r\n\r\n**Supported Countries**\r\n- [USA] \r\n\r\n" contact: name: Contact Us url: 'https://se.com' email: distributorapiportal.global@se.com servers: - url: 'https://api.qa.se.com/v1/sales-operation/partner-seller-marketplace' description: 'QA environment' - url: 'https://api.preprod.se.com/v1/sales-operation/partner-seller-marketplace' description: 'Pre production environment' - url: 'https://api.se.com/v1/sales-operation/partner-seller-marketplace' description: 'Production environment' paths: /prices: get: tags: - seller price summary: Get price information description: "Retrieve price information for products offered by the seller on the marketplace.\r\nWhen field, value, and conditiontype are not specified, all seller product prices will be returned" operationId: get-prices parameters: - $ref: '#/components/parameters/pagesize' - $ref: '#/components/parameters/currentpage' - name: field in: query description: The field must always be ‘sku’ schema: type: string enum: - sku example: sku - name: value in: query description: A SKU number or a comma-separated list of SKU numbers schema: type: string example: '32564GFK,32564GFL,32564GFM' - name: conditiontype in: query description: Specifies the type of condition for evaluating the field’s value. schema: type: string enum: - eq - in example: eq - name: cluster in: query description: Identify backend cluster required: true schema: type: string example: nam - name: scope in: query description: Identify store scope in relation to the backend schema: type: string example: default responses: '200': description: Prices for products content: application/json: schema: type: object properties: items: type: array description: Array of price objects items: $ref: '#/components/schemas/price' searchCriteria: $ref: '#/components/schemas/search_criteria' totalCount: type: integer description: The total number of items included in the response. examples: All Items retrieved: value: items: - sku: SKU123456 price: 53.99 mfp: 50 MSRPPrice: 50 searchCriteria: filterGroups: - filters: - field: string value: string conditionType: string sortOrders: - field: string direction: string pageSize: 20 currentPage: 1 totalCount: 1 Second page of results requested: value: items: - sku: SKU123456 price: 53.99 mfp: 50 MSRPPrice: 50 - sku: SKU123457 price: 43.99 mfp: 40 MSRPPrice: 40 searchCriteria: filterGroups: - filters: - field: string value: string conditionType: string sortOrders: - field: string direction: string pageSize: 2 currentPage: 2 totalCount: 4 Filters produce empty result: value: items: [] searchCriteria: filterGroups: - filters: - field: sku value: 'SKUNONEXISTENT1, SKUNONEXISTENT2' conditionType: in sortOrders: - field: string direction: string pageSize: 20 currentPage: 1 totalCount: 0 '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' '403': $ref: '#/components/responses/403' '404': $ref: '#/components/responses/404' '414': $ref: '#/components/responses/response-uri-too-long' '429': $ref: '#/components/responses/429' '500': $ref: '#/components/responses/500' security: - oauthToken: [] post: tags: - seller price summary: Update Price Information description: "Update price information for seller offerings\r\n" operationId: post-prices parameters: - name: cluster in: query description: Identify backend cluster required: true schema: type: string example: nam - name: scope in: query description: Identify store scope in relation to the backend schema: type: string example: default requestBody: description: Update price for one or many items. content: application/json: schema: type: object properties: items: type: array description: Array of price objects items: $ref: '#/components/schemas/price_2' required: - items examples: Example 1: value: items: - sku: SKU123456 price: 50 - sku: SKU123457 price: 80 responses: '200': $ref: '#/components/responses/update-success' '206': $ref: '#/components/responses/partial-success' '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' '403': $ref: '#/components/responses/403' '404': $ref: '#/components/responses/404' '429': $ref: '#/components/responses/429' '500': $ref: '#/components/responses/500' security: - oauthToken: [] /stocks: get: tags: - seller stock summary: Get stock information description: "Endpoints that provides information about available stock quatities of items offered by seller\r\n- get stock for the products associated to the seller [Schneider Marketplace](https://ppr-mex-smartshop.se.com/)\r\n- put stock to a seller\r\nWhen field, value, and conditiontype are not specified, all seller product quantities will be returned." operationId: get-stock parameters: - $ref: '#/components/parameters/pagesize' - $ref: '#/components/parameters/currentpage' - name: field in: query description: The field must always be ‘sku’. schema: type: string enum: - sku example: sku - name: value in: query description: A SKU number or a comma-separated list of SKU numbers schema: type: string example: '32564GFK,32564GFL,32564GFM' - name: conditiontype in: query description: Specifies the type of condition for evaluating the field’s value. schema: type: string enum: - eq - in example: in - name: cluster in: query description: Identify backend cluster required: true schema: type: string example: nam - name: scope in: query description: Identify store scope in relation to the backend schema: type: string example: default responses: '200': description: OK content: application/json: schema: type: object properties: items: type: array description: Array of stock objects items: $ref: '#/components/schemas/Inventory' totalCount: type: integer description: The total number of items included in the response. searchCriteria: $ref: '#/components/schemas/search_criteria' examples: All items returned in a single page: value: items: - sku: SKU123456 quantity: 10 - sku: sku123457 quantity: 15 total_count: 2 search_criteria: filter_groups: - filters: - field: string value: string condition_type: string sort_orders: - field: string direction: string page_size: 20 current_page: 1 Request for page 2: value: items: - sku: SKU123458 quantity: 10 - sku: SKU123459 quantity: 15 total_count: 4 search_criteria: filter_groups: - filters: - field: string value: string condition_type: string sort_orders: - field: string direction: string page_size: 2 current_page: 2 Filters produce empty result: value: items: [] total_count: 0 search_criteria: filter_groups: - filters: - field: sku value: 'SKUNONEXISTIENT1, SKUNONEXISTENT2' condition_type: in sort_orders: - field: string direction: string page_size: 20 current_page: 1 '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' '403': $ref: '#/components/responses/403' '404': $ref: '#/components/responses/404' '414': $ref: '#/components/responses/response-uri-too-long' '429': $ref: '#/components/responses/429' '500': $ref: '#/components/responses/500' security: - oauthToken: [] post: tags: - seller stock summary: Update stock information description: "Update stock information for seller offerings\r\n" operationId: patch-stock parameters: - name: cluster in: query description: Identify backend cluster required: true schema: type: string example: nam - name: scope in: query description: Identify store scope in relation to the backend schema: type: string example: default requestBody: content: application/json: schema: type: object properties: items: type: array description: Array of stock objects items: $ref: '#/components/schemas/Inventory' required: - items examples: Example 1: value: items: - sku: SKU123456 quantity: 10 - sku: SKU123457 quantity: 15 responses: '200': $ref: '#/components/responses/update-success' '206': $ref: '#/components/responses/partial-success' '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' '403': $ref: '#/components/responses/403' '404': $ref: '#/components/responses/404' '429': $ref: '#/components/responses/429' '500': $ref: '#/components/responses/500' security: - oauthToken: [] /orders/sales: post: tags: - seller order summary: Accept/Reject Order description: "Accept or reject the order by ID\r\n" operationId: post-process parameters: - name: cluster in: query description: Identify backend cluster required: true schema: type: string example: nam - name: scope in: query description: Identify store scope in relation to the backend schema: type: string example: default requestBody: description: '' content: application/json: schema: $ref: '#/components/schemas/Process-order-request' examples: Example 2: value: orderId: string accept: true responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Process-order-response' examples: Example 1: value: orderId: string status: string '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' '403': $ref: '#/components/responses/403' '404': $ref: '#/components/responses/404' '429': $ref: '#/components/responses/429' '500': $ref: '#/components/responses/500' security: - oauthToken: [] '/orders/{order-id}': get: tags: - seller order summary: Get order details description: | Current endpoint provide seller order details information with order items, shipping and billing addresses by order ID. operationId: get-seller-order-details parameters: - name: cluster in: query description: Identify backend cluster required: true schema: type: string - name: scope in: query description: Identify store scope in relation to the backend schema: type: string - name: order-id in: path description: A Seller order ID required: true schema: type: string responses: '200': description: '' content: application/json: schema: $ref: '#/components/schemas/Order-Details' examples: Example: value: orderId: 326 orderNumber: '000000260' status: processing createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' currencyCode: USD countryCode: US subtotal: 3 shippingAmount: 5 discountAmount: 0 taxAmount: 0 grandTotal: 8 customerFirstname: muxen customerLastname: noi customerEmail: muxenoiyaxei-9191@yopmail.com paymentMethod: Check / Money order shippingMethod: Flat Rate - Fixed weight: 0 items: - sku: Artem Track2 Demo Product test2 name: Artem Track2 Demo Product test2 qtyOrdered: 1 qtyInvoiced: 0 qtyShipped: 1 qtyCanceled: 0 qtyRefunded: 0 price: 3 subtotal: 3 discountAmount: 0 taxAmount: 0 billingAddress: firstname: muxen lastname: noi telephone: '+14842634734' country: US region: New York city: NY street: - temp postcode: '10003' shippingAddress: firstname: muxen lastname: noi telephone: '+14842634734' country: US region: New York city: NY street: - temp postcode: '10003' '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' '403': $ref: '#/components/responses/403' '404': $ref: '#/components/responses/404' '414': $ref: '#/components/responses/response-uri-too-long' '429': $ref: '#/components/responses/429' '500': $ref: '#/components/responses/500' security: - oauthToken: [] /orders: get: tags: - seller order summary: Get orders list description: "Current API endpoint provide the information of the seller orders filtered or not filtered by serch criteria specification.\r\nWhen field, value, and conditiontype are not specified, all seller orders will be returned." operationId: get-seller-order-list parameters: - name: pagesize in: query description: Defines the maximum number of items to include in each page of results. schema: type: integer minimum: 1 maximum: 20 example: 20 - $ref: '#/components/parameters/currentpage' - name: field in: query description: The name of the field on which the filter is applied. schema: type: string enum: - status - created_at - updated_at - name: value in: query description: The value or values to be matched against the specified field. schema: type: string example: complete - name: conditiontype in: query description: Specifies the type of condition for evaluating the field’s value. schema: type: string enum: - eq - gt - lt - greq - lteq - in - name: cluster in: query description: Identify backend cluster required: true schema: type: string - name: scope in: query description: Identify store scope in relation to the backend schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: items: type: array description: Array of orders items: $ref: '#/components/schemas/Order_List_Item' searchCriteria: $ref: '#/components/schemas/search_criteria' totalCount: type: integer description: The total number of items included in the response. examples: Example 1: value: items: - orderId: 2 status: processing createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 11 status: pending createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 20 status: pending createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 23 status: pending createdAt: '1725577''2024-10-15 08:40:37''215' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 50 status: pending createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 65 status: canceled createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 74 status: processing createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 239 status: processing createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 242 status: processing createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 245 status: pending createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 248 status: pending createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 251 status: seller_rejected createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 296 status: processing createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 317 status: seller_rejected createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 320 status: pending createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 326 status: processing createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 329 status: pending createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 332 status: pending createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 344 status: pending createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US - orderId: 347 status: pending createdAt: '2024-10-15 08:40:37' updatedAt: '2024-10-15 08:40:37' countryCode: US searchCriteria: filterGroups: - filters: - field: status value: complete conditionType: neq pageSize: 20 currentPage: 1 totalCount: 20 '400': $ref: '#/components/responses/400' '401': $ref: '#/components/responses/401' '403': $ref: '#/components/responses/403' '404': $ref: '#/components/responses/404' '429': $ref: '#/components/responses/429' '500': $ref: '#/components/responses/500' security: - oauthToken: [] tags: - name: seller price - name: seller stock - name: seller order components: parameters: pagesize: name: pagesize in: query description: Defines the maximum number of items to include in each page of results. required: false schema: type: integer format: int32 minimum: 1 exclusiveMinimum: true maximum: 1000 default: 1000 example: 1000 currentpage: name: currentpage in: query description: Specifies the page number of the paginated results to retrieve. required: false schema: type: integer format: int32 minimum: 1 default: 1 example: 1 securitySchemes: oauthToken: type: oauth2 flows: clientCredentials: refreshUrl: '' scopes: {} tokenUrl: '/token' responses: '400': description: 'Request is invalid and cannot be processed due one or more issues such as syntax errors, missing required fields, out of range values, conflicting query parameters, or unknown URI.' content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' examples: Example: value: code: BAD_REQUEST userMessage: 'Request is invalid and cannot be processed due one or more issues such as syntax errors, missing required fields, out of range values, conflicting query parameters, or unknown URI.' developerMessage: Request content is malformed or exceeded structural limits moreInfo: 'https://example.com/error/123' '401': description: 'The client is not authorized to perform this request because its identity has not yet been established, or the token is invalid or has expired.' content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' examples: Example: value: code: UNAUTHORIZED userMessage: 'The client is not authorized to perform this request because its identity has not yet been established, or the token is invalid or has expired.' developerMessage: Invalid Access Token moreInfo: 'https://example.com/error/123' '403': description: The client does not have permission to perform the requested action e.g. POST or DELETE. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' examples: Example: value: code: FORBIDDEN userMessage: The client does not have permission to perform the requested action e.g. POST or DELETE. developerMessage: Http verb DELETE is not supported for path suffix /installed-products/track moreInfo: 'https://example.com/error/123' '404': description: Requested resource does not exist on the server. It is assumed that the URI is valid for this type of resource. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' examples: Example: value: code: NOT_FOUND userMessage: Requested resource does not exist on the server. It is assumed that the URI is valid for this type of resource. developerMessage: Records not found moreInfo: 'https://example.com/error/123' '429': description: Number of requests has exceeded the client's rate limits. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' examples: Example: value: code: TOO_MANY_REQUESTS userMessage: Number of requests has exceeded the client’s rate limits. developerMessage: Spike arrest violation moreInfo: 'https://example.com/error/123' '500': description: Requested operation encountered an unexpected server error. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' examples: Example: value: code: INTERNAL_SERVER_ERROR userMessage: Requested operation encountered an unexpected server error. developerMessage: 'Target service is unavailable, please try again later.' moreInfo: 'https://example.com/error/123' partial-success: description: Partially processed content: application/json: schema: type: object properties: message: type: string description: The message indicating partial success. errors: type: array description: A list of errors that occurred during request processing. items: type: object properties: message: type: string description: A descriptive message explaining the error. parameters: type: array description: 'Provides details about the resource, field name, and field value involved in the error.' items: type: object properties: resources: type: string description: Refers to the entity or self. fieldName: type: string description: The specific field that caused the error. fieldValue: type: string description: The invalid value that caused the error. code: type: integer description: 206 - The HTTP status code indicating a partial success of the request updatedItems: type: array description: A list of SKU identifiers for the products that were successfully updated. items: type: string example: ABC123 x-examples: Example 1: message: string errors: - message: string parameters: - resources: string fieldName: string fieldValue: string code: 0 updated_items: - string examples: Example 1: value: message: Update complete with errors errors: - message: SKU was not found parameters: - resources: self fieldName: sku fieldValue: SKU123456 code: 206 updatedItems: - SKU123457 - SKU123458 response-uri-too-long: description: Request-URI Too Long content: text/plain: schema: type: string examples: Example 1: value: 'Eror: URI Toor Long' update-success: description: Updates processed succesfully content: application/json: schema: type: object properties: message: type: string description: The message confirming the successful operation. errors: type: array description: 'When the request is successful, the array is empty.' items: type: object code: type: integer description: 200 - The HTTP status code indicating the successful result of the request updatedItems: type: array description: A list of SKU identifiers for the products that were successfully updated. items: type: string x-examples: Example 1: message: string errors: - message: string parameters: - resources: string fieldName: string fieldValue: string code: 0 updated_items: - string examples: Example 1: value: message: Update complete successfully errors: [] code: 206 updatedItems: - SKU123457 - SKU123458 schemas: price: type: object title: price description: Price model for seller price properties: sku: type: string description: The unique Stock Keeping Unit (SKU) identifier for the product. price: type: number description: The price at which the product is sold to customers. mfp: type: number description: Minimum floor price. MSRPPrice: type: number description: The Manufacturer’s Suggested Retail Price (MSRP) for retail sale. required: - sku - price x-internal: true search_criteria: type: object title: search criteria description: the model for the search criteria properties: filterGroups: type: array description: The group filter object that refines the search results. items: type: object properties: filters: type: array description: array of defined filters items: type: object properties: field: type: string description: field name value: type: string description: field value conditionType: type: string description: the filter condition type pageSize: type: integer description: the page size to return currentPage: type: integer description: the current page number x-examples: Example 1: filter_groups: - filters: - field: string value: string condition_type: string sort_orders: - field: string direction: string page_size: 0 current_page: 0 x-internal: true price_2: type: object title: price properties: sku: type: string description: The unique Stock Keeping Unit (SKU) identifier for the product. price: type: number description: The price at which the product is sold to customers. required: - sku - price x-internal: true Inventory: type: object title: Inventory properties: sku: type: string description: The unique Stock Keeping Unit (SKU) identifier for the product. quantity: type: integer description: The quantity to set for the new stock level of the product. minimum: 0 required: - sku - quantity x-internal: true Process-order-request: type: object title: Process-order-request properties: orderId: type: string description: The unique identifier for the order that is to be accepted or rejected. Only orders in 'pending' status can be accepted or rejected. accept: type: boolean description: A flag indicating whether to accept or reject the order. required: - orderId - accept Process-order-response: type: object title: Process-order-response properties: orderId: type: string description: The unique identifier for the order that was processed. status: type: string description: The new status of the order that was processed. example: processing|seller_rejected required: - orderId - status Order-Details: type: object title: Order-Details properties: orderId: type: integer description: Primary internal order ID orderNumber: type: string description: 'External order number, provided to customer' status: type: string description: Order status createdAt: type: string description: Timestamp order creation time example: '2024-10-15 08:40:37' updatedAt: type: string description: Timestamp order update time example: '2024-10-15 08:40:37' currencyCode: type: string description: Order currency code countryCode: type: string description: Order store country code subtotal: type: number description: Summary of order lines subtotal shippingAmount: type: number description: Order shipping amount discountAmount: type: number description: Order discount amount taxAmount: type: number description: Order tax amount grandTotal: type: number description: 'Final order price with taxes, discount and shipping' customerFirstname: type: string description: First name of the customer who bought the order customerLastname: type: string description: Last name of the customer who bought the order customerEmail: type: string description: Email address of the customer who bought the order paymentMethod: type: string description: Payment method title shippingMethod: type: string description: Shipping method title weight: type: number description: Total order weight for all items items: type: array description: Information about ordered product items items: type: object properties: sku: type: string description: Ordered product SKU name: type: string description: Ordered product name weight: type: number description: 'Weight for 1 count of the ordered product ' price: type: number description: 'Price for 1 count of the ordered product ' qtyOrdered: type: number description: Total ordered quantity qtyInvoiced: type: number description: Total invoiced quantity qtyShipped: type: number description: Total shipped quantity qtyCanceled: type: number description: Total cancelled quantity qtyRefunded: type: number description: Total refunded quantity subtotal: type: number description: Total price amount for all quantities of the product discountAmount: type: number description: Total discount amount for all quantities of the product taxAmount: type: number description: Total tax amount for all quantities of the product billingAddress: type: object description: Customer billing address properties: firstname: type: string description: Billing address customer first name lastname: type: string description: Billing address customer last name city: type: string description: Billing address city telephone: type: string description: Billing address customer telephone region: type: string description: Billing address region (state/province) street: type: array description: Billing address customer street information items: type: string postcode: type: string description: Billing address customer street information country: type: string description: Order billing address country shippingAddress: type: object description: Customer billing address properties: firstname: type: string description: Shipping address customer first name lastname: type: string description: Shipping address customer last name city: type: string description: Shipping address city telephone: type: string description: Shipping address customer telephone region: type: string description: Shipping address region (state/province) street: type: array description: Shipping address customer street information items: type: string postcode: type: string description: Shipping address postal code country: type: string description: Order shipping address country Order_List_Item: type: object title: Order List Item properties: orderId: type: integer description: The unique identifier for the Seller order. status: type: string description: The current status of the order. createdAt: type: string description: The date and time the order was created. example: '2024-10-15 08:40:37' updatedAt: type: string description: The date and time the order was last updated. example: '2024-10-15 08:40:37' countryCode: type: string description: The country location associated with the order. example: US ErrorResponse: type: object title: ErrorResponse description: Error response returned to the consumer when an HTTP error status has occurred. properties: code: type: string description: |- Service-defined error code which may be numeric or a string. Errors detected by the APIM platform result in the following codes. BAD_REQUEST (for 400) UNAUTHORIZED (for 401) FORBIDDEN (for 403) NOT_FOUND (for 404) GONE (for 410) PRECONDITION_FAILED (for 412) TOO_MANY_REQUESTS (for 429) INTERNAL_SERVER_ERROR (for 500) NOT_IMPLEMENTED (for 501) Any specific service validation errors would replace BAD_REQUEST. example: MISSING_FIELD or 12345 userMessage: type: string description: Human-readable general description of the error. example: 'Required field is missing: productSku' developerMessage: type: string description: Optional human-readable description of the error details. example: 'Product master API ParseException: required tag expected' moreInfo: type: string description: 'Optional link to error documentation, which has more information about the error.' example: 'https://example.com/product-master/v1/error/12345' required: - code - userMessage security: - oauthToken: []