Help-Center
Terms of servicePricing
English
English
  • About Blinger.io
  • Quick launch
  • Customer cases
  • Documentation
    • Definitions
    • Sign up and Login
    • Tab: Apps
      • Adding accounts
        • Facebook
        • WhatsApp
        • Telegram
        • Viber
        • Twitter
        • WeChat
        • Vkontakte
        • Odnoklassniki
        • Skype
        • Line
        • Email
        • LiveChat
        • Custom app
      • Tagging accounts
      • Assigning channel to a group
    • Tab: Integrations
      • Freshchat
      • Freshdesk
      • Zendesk
      • Intercom
      • Salesforce
      • Kayako
      • BPM'online
      • Slack
      • Iframe
    • Tab: Conversations
    • Tab: Widget
    • Tab: Operators
      • Manage operators
      • Manage operator groups
      • Manage roles
      • Distribution by keywords
    • Tab: Analytics
      • Tags
      • Clients
      • Agents
      • Conversations
    • Tab: Settings
      • Subtab: General
      • Subtab: Autoresponder
      • Subtab: Auto assign messages
      • Subtab: Topics of conversations
      • Subtab: Advanced
    • New message notifications
    • Webhooks
    • Widget API (beta version)
      • Conversation
      • Agent
      • Webhook
      • API Token
    • API
      • API Token
      • Conversation
      • Operator
      • User
  • FAQ
    • Frequently asked questions
      • About functions
        • Autoresponder
        • Assign channels to groups
      • About intergrations
        • Viber
        • Telegram
        • Freshdesk
        • Zendesk
        • WhatsApp
    • Widget
  • Releases
    • Changelog
Powered by GitBook
On this page
  • Get operators
  • Get groups
  • Create operator
  • Delete operator

Was this helpful?

  1. Documentation
  2. API

Operator

Get operators

GET https://app.blinger.io/api/operators/all

This endpoint allows you to get operators.

Headers

Name
Type
Description

Authentication

string

Authentication token.

{
    "status": 200,
    "data": [
        {
            "id": 1,
            "user_id": 1,
            "owner_user_id": 1,
            "invite_email": "user1@gmail.com",
            "conversations_token": "5c763415ee6c7"
        },
        {
            "id": 2,
            "user_id": 3,
            "owner_user_id": 1,
            "invite_email": "al@blinger.io",
            "conversations_token": "5cf8c80657eec"
        }
    ]
}
{
    "error": "Empty token",
    "status": 401
}

Get groups

GET https://app.blinger.io/api/operators/groups

Headers

Name
Type
Description

Authentication

string

Authentication token

{
    "status": 200,
    "data": [
        {
            "id": 1,
            "user_id": 1,
            "title": "Default",
            "priority": 1,
            "color": "#22539c",
            "is_default": true
        }
    ]
}
{
    "error": "Empty token",
    "status": 401
}

Create operator

POST https://app.blinger.io/api/operators/create

Path Parameters

Name
Type
Description

Authentication

string

Authentication token

Request Body

Name
Type
Description

operator_email

string

operator_password

string

{
    "status": 200,
    "data": {
        "invite_email": "bbb@bb.bb",
        "owner_user_id": 47,
        "id": 14758,
        "user_id": 14432
    }
}
{
    "error": {
        "invite_email": "Email \"bbb@bb.bb\" has already been taken."
    },
    "status": 400
}

Delete operator

POST https://app.blinger.io/api/operators/delete

Path Parameters

Name
Type
Description

Authentication

string

Authentication token

Request Body

Name
Type
Description

operator_id

integer

{
    "status": 200,
    "data": {
        "success": true
    }
}
{
    "error": "Operator not found",
    "status": 400
}
PreviousConversationNextUser

Last updated 5 years ago

Was this helpful?