GET
/
products
/
sku
{
  "data": [
    {
      "id": "7b7329dfd5288b0011332399",
      "sku": "QWEFVVV",
      "type": "ITEM",
      "isActive": true,
      "hasDraft": true,
      "hasLive": true,
      "status": "LIVE",
      "attributes": [
        {
          "id": "7b7329dfd5288b0011332355",
          "name": "Color",
          "type": "string",
          "isDeleted": false,
          "value": "blue",
          "isInherited": true
        }
      ],
      "localizedProperties": {
        "en-US": {
          "attributes": [
            {
              "id": "5e7329dfd5288b0011332344",
              "name": "Color",
              "type": "string",
              "isDeleted": false,
              "value": "blue",
              "isInherited": true
            }
          ]
        },
        "en-IN": {
          "attributes": [
            {
              "id": "717329dfd5288b0011332317",
              "name": "Colour",
              "type": "string",
              "isDeleted": false,
              "value": "blue",
              "isInherited": true
            }
          ]
        }
      },
      "variants": [
        {
          "id": "2b7329dfd5288b0011332311",
          "sku": "AAD12334V2"
        }
      ],
      "categoryId": "6b7329dfd5288b0011332317",
      "createdAt": "2021-09-14T22:10:30.618Z",
      "updatedAt": "2021-09-14T22:10:30.618Z"
    }
  ],
  "offset": 5,
  "limit": 10,
  "count": 100
}

Authorizations

Authorization
string
headerrequired

S2S access token (JWT) from fabric Identity service (during Login)

Headers

x-fabric-tenant-id
string

The x-fabric-tenant-id header is a string that contains the ID of the tenant from whom you wish to pull information from.

x-fabric-request-id
string

Unique request ID

Query Parameters

skus
string

Unique product ID that maps to fabric's standard attribute called SKU. <br /> <b>Note:</b> sku should not include ; or =

limit
integer
default: 10

Maximum number of records per page

offset
integer
default: 0

Number of records to skip before returning records. For example, offset=20, limit=10 returns records 21-30.

type
enum<string>
deprecated

Product types that can be filtered are Item, Bundle, and Variant

Available options:
ITEM,
VARIANT,
BUNDLE
locales
string

Comma-separated locale codes of product. The service throws a 400 error if the locale is not supported. Standard locales can be found at https://www.rfc-editor.org/rfc/rfc5646. <br /> Note: The recommended way to get the locale is by invoking multi-channel service.

statuses
string
default: DRAFT,LIVE

Comma-separated statuses indicating the preferred order of the product versions considered for this operation (endpoint action). For example, <br />1. When the status is DRAFT, this operations will only apply to the Draft version of product, if it exists <br />2. When the status is LIVE, this operation will only apply to the Live version of the product, if it exists <br />3 When the status is LIVE,DRAFT, this operation will priortize Live version first, if it exists. Otherwise, the Draft version is considered. <br />4 When the status is DRAFT,LIVE this operation will priortize the Draft version first, if it exists. Otherwise, the Live version is considered.

types
string

Product types that can be filtered are Item, Bundle, and Variant. Supports multiple types when provided as comma separated types

Response

200 - application/json
offset
integer
default: 0

Number of records to skip before returning records. For example, offset=20, limit=10 returns records 21-30.

limit
integer
default: 10

Maximum number of records per page

count
integer

Total number of records in the response

data
object[]