> For the complete documentation index, see [llms.txt](https://mipos.gitbook.io/public-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mipos.gitbook.io/public-api/integration-management/information-of-delivery-integrations.md).

# Information of delivery integrations

## Get delivery integrations

<mark style="color:blue;">`GET`</mark> `https://integrations.mipos.shop/api/v1/integrations/delivery`

Provides a list of delivery integrations registered in the platform

#### Headers

| Name          | Type   | Description            |
| ------------- | ------ | ---------------------- |
| Authorization | string | Bearer {access\_token} |

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

```javascript
[
    {
        "id": 1,
        "name": "Uber Eats"
    },
    {
        "id": 2,
        "name": "Rappi"
    }
]
```

{% endtab %}

{% tab title="401 " %}

```
"Unauthorized."
```

{% endtab %}
{% endtabs %}
