> For the complete documentation index, see [llms.txt](https://fez-delivery-co.gitbook.io/fezcorporate-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fez-delivery-co.gitbook.io/fezcorporate-api-docs/api-endpoints/international-orders/import-items-categories.md).

# Import Items Categories

Import Items Categories

## Endpoint => /orders/item-categories

<mark style="color:blue;">`GET`</mark> `/orders/item-categories`

#### Headers

| Name                                             | Type   | Description       |
| ------------------------------------------------ | ------ | ----------------- |
| Authorization <mark style="color:red;">\*</mark> | String | Your Bearer Token |
| secret-key<mark style="color:red;">\*</mark>     | String | Your Secret Key   |

{% tabs %}
{% tab title="200 Success" %}

```json
{
    "status": "Success",
    "description": "Request Successful",
    "data": {
        "categories": [
            {
                "id": 1,
                "name": "Food and Groceries"
            },
            {
                "id": 2,
                "name": "Retail Products"
            },
            {
                "id": 3,
                "name": "Pharmaceuticals and Healthcare"
            },
            {
                "id": 4,
                "name": "Documents and Parcels"
            },
            {
                "id": 5,
                "name": "Furniture and Household Items"
            },
            {
                "id": 6,
                "name": "Flowers and Gifts"
            },
            {
                "id": 7,
                "name": "Electronics and Gadgets"
            },
            {
                "id": 8,
                "name": "Automotive Parts"
            },
            {
                "id": 9,
                "name": "Industrial and Commercial Supplies"
            },
            {
                "id": 10,
                "name": "Specialty Items"
            }
        ]
    }
}
```

{% endtab %}

{% tab title="401 Unauthorized" %}

```json
{
    "status": "Error",
    "description": "Organization Secret Key is Required"
}
```

{% endtab %}
{% endtabs %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://apisandbox.fezdelivery.co/v1/orders/item-categories',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'secret-key: {{Your Secret Key}}'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

```
