Shop

The central unit in the HighTouch platform. Combines the bot's work scenarios, connected channels, user and application database, and a set of settings.

Shops list

GET https://app.hightouch.ai/api/shop/shops/

List of available stores

Query Parameters

{
    "status": "ok",
    "result": {
        "count": 1,
        "next": null,
        "previous": null,
        "results": [
            {
                "id": 182,
                "trade_name": "My Shop",
                "lang_by_default": "ru",
                "languages_allowed": [
                    "ru"
                ],
                "subscription": {
                    "id": 83,
                    "profile": {
                        "user": {
                            "id": 215,
                            "username": "gugaevkirill@gmail.com",
                            "first_name": "",
                            "last_name": "",
                            "email": "gugaevkirill@gmail.com"
                        }
                    },
                    "status": 1,
                    "tariff": 1
                },
                "time_zone": "(UTC+00:00) - UTC",
                "show_number_buttons": true,
                "enable_cascade": false,
                "send_messages_to_crm": {
                    "id": 1,
                    "name": "Все сообщения"
                },
                "fallback_flow": null,
                "live_chat_open_when": {
                    "id": 2,
                    "name": "Только вручную"
                },
                "live_chat_new_chat_assign_to": {
                    "id": 4,
                    "name": "На самого свободного оператора on-line"
                },
                "live_chat_existing_chat_assign_to": {
                    "id": 1,
                    "name": "Каждый раз на нового оператора"
                },
                "live_chat_existing_chat_reassign_if_offline": {
                    "id": 1,
                    "name": "На нового оператора"
                }
            }
        ]
    }
}

Shops information

GET https://app.hightouch.ai/api/shop/shops/id/

Store ID information

Path Parameters

{
    "status": "ok",
    "result": {
        "id": 182,
        "trade_name": "gugaevkirill@gmail.com",
        "lang_by_default": "ru",
        "languages_allowed": [
            "ru"
        ],
        "subscription": {
            "id": 83,
            "profile": {
                "user": {
                    "id": 215,
                    "username": "gugaevkirill@gmail.com",
                    "first_name": "",
                    "last_name": "",
                    "email": "gugaevkirill@gmail.com"
                }
            },
            "status": 1,
            "tariff": 1
        },
        "time_zone": "(UTC+00:00) - UTC",
        "show_number_buttons": true,
        "enable_cascade": false,
        "send_messages_to_crm": {
            "id": 1,
            "name": "Все сообщения"
        },
        "fallback_flow": null,
        "live_chat_open_when": {
            "id": 2,
            "name": "Только вручную"
        },
        "live_chat_new_chat_assign_to": {
            "id": 4,
            "name": "На самого свободного оператора on-line"
        },
        "live_chat_existing_chat_assign_to": {
            "id": 1,
            "name": "Каждый раз на нового оператора"
        },
        "live_chat_existing_chat_reassign_if_offline": {
            "id": 1,
            "name": "На нового оператора"
        }
    }
}

Last updated