---
title: "Get all senders"
description: "Receive all senders belonging to the company"
openapi: "/openapi/omni-api.yaml GET /senders"
---

> **For AI agents:** the complete documentation index is at [llms.txt](/llms.txt). Append `.md` to any page URL for its markdown version.

`GET https://web.otpcod.ru/api/v1/senders`

Receive all senders belonging to the company

---

##### Sender statuses

| Status Code | Description |
|-------------|-------------|
| -1          | Blocked     |
| 0           | Draft       |
| 1           | In tests    |
| 2           | Active      |

## Authentication

- `BasicAuth` — http basic AND `X-Api-Key` — apiKey in header: `X-Api-Key`

## Response 200

OK
  - response (object)
    - `data` (array)
      - `items` (object)
        - `channel` (integer)
        - `displayName` (string)
        - `senderId` (string)
        - `status` (integer)
        - `vendorType` (string)
        - `webhookGuid` (string)
        - `webhookUrl` (string)
    - `error` (boolean)

## Response 400

Bad Request
  - response (object)
    - `data` (object)
      - `message` (string)
      - `requestId` (string)
    - `error` (boolean)

## Response 401

Unauthorized
  - response (object)
    - `data` (object)
      - `message` (string)
      - `requestId` (string)
    - `error` (boolean)

## Response 404

Not Found
  - response (object)
    - `data` (object)
      - `message` (string)
      - `requestId` (string)
    - `error` (boolean)

## Response 500

Internal Server Error
  - response (object)
    - `data` (object)
      - `message` (string)
      - `requestId` (string)
    - `error` (boolean)


---

📦 **OpenAPI specs:** Every OpenAPI specification referenced by this documentation is available as a single download — https://iba-platform.jamdesk.app/api-specs.zip
