> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voucherify.io/llms.txt
> Use this file to discover all available pages before exploring further.

# SKU Object

<div class="prose dark:prose-invert custom-html">
  <h2 id="sku-object">SKU Object</h2>

  <table>
    <thead>
      <tr>
        <th>Attributes</th>
        <th>Description</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td>
          <p>
            id

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>A unique identifier that represents the SKU and is assigned by Voucherify.</p>

          <p>
            <strong>Example:</strong>
            sku\_0b1621b319d248b79f
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            source\_id

            <br />

            <code>string</code>,
            <code>null</code>
          </p>
        </td>

        <td>
          <p>A unique SKU identifier from your inventory system.</p>

          <p>
            <strong>Example:</strong>
            sku\_source\_id\_4
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            product\_id

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>The parent product's unique ID.</p>

          <p>
            <strong>Example:</strong>
            prod\_0b15f6b9f650c16990
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            sku

            <br />

            <code>string</code>,
            <code>null</code>
          </p>
        </td>

        <td>
          <p>Unique user-defined SKU name.</p>

          <p>
            <strong>Example:</strong>
            Large Pink Shirt
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            price

            <br />

            <code>integer</code>,
            <code>null</code>
          </p>
        </td>

        <td>
          <p>
            Unit price. It is represented by a value multiplied by 100 to accurately reflect 2 decimal places, such as
            <code>\$100.00</code>
            being expressed as
            <code>10000</code>.
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            currency

            <br />

            <code>string</code>,
            <code>null</code>
          </p>
        </td>

        <td>
          <p>SKU price currency.</p>

          <p>
            <strong>Example:</strong>
            USD
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            attributes

            <br />

            <code>object</code>
          </p>
        </td>

        <td>
          <p>The attributes object stores values for all custom attributes inherited by the SKU from the parent product. A set of key/value pairs that are attached to a SKU object and are unique to each SKU within a product family.</p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            image\_url

            <br />

            <code>string</code>,
            <code>null</code>
          </p>
        </td>

        <td>
          <p>The HTTPS URL pointing to the .png or .jpg file that will be used to render the SKU image.</p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            metadata

            <br />

            <code>object</code>
          </p>
        </td>

        <td>
          <p>The metadata object stores all custom attributes assigned to the SKU. A set of key/value pairs that you can attach to a SKU object. It can be useful for storing additional information about the SKU in a structured format. It can be used to create product collections.</p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            created\_at

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>Timestamp representing the date and time when the SKU was created. The value is shown in the ISO 8601 format.</p>

          <p>
            <strong>Example:</strong>
            2022-05-17T10:36:30.187Z
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            updated\_at

            <br />

            <code>string</code>,
            <code>null</code>
          </p>
        </td>

        <td>
          <p>Timestamp representing the date and time when the SKU was updated. The value is shown in the ISO 8601 format.</p>

          <p>
            <strong>Example:</strong>
            2022-05-17T10:55:09.137Z
          </p>
        </td>
      </tr>

      <tr>
        <td>
          <p>
            object

            <br />

            <code>string</code>
          </p>
        </td>

        <td>
          <p>
            The type of the object represented by JSON. This object stores information about the
            <code>SKU</code>.
          </p>

          <p>
            Available values:
            <code>sku</code>
          </p>
        </td>
      </tr>
    </tbody>
  </table>
</div>
