Попробовать

❎ 6. Создаем лиды (обращения)

📂 На этом этапе необходимы:

Лиды добавляются с помощью метода Create Lead или Create Many Leads

📤 Пример запроса на создание Лида:

POST https://apps.smartanalytics.io/crm/v1/api/leads/

Request Body:
{
  "outer_id": "123456",
  "name": "Lead #1";
  "pipeline_id": "6179558e7100eeb40997f733",
  "status_id": "617957d87100eeb40997f733",
  "manager_id": "617ab1c20f74ea854cfe8864",
  "contact_id": "617ab29c0f74ea854cfe8865",
  "utm_source": "none",
  "utm_medium": "none",
  "utm_campaign": "none",
  "utm_content": "none",
  "utm_term": "none",
  "metrika_cid": "none",
  "google_cid": "none",
  "smart_visitor_id": "none",
  "price": 0,
  "products": [
    {
      "id": "12321321",
      "name": "Porduct #1",
      "category": "none",
      "quantity": 1,
      "price": 2310
    }
  ],
  "custom_fields": [
    {
      "id": "617aa3eb0f74ea854cfe8222",
      "value": "Ivan"
    }
  ],
  "purchase_tax": 0,
  "purchase_shipping": "Самовывоз",
  "rejection_reason": "Нет нужного товара",
  "first_cost": 0,
  "created": 1635424815,
  "last_modified": 1635424815,
  "invoice": "none",
  "entity_link": "none",
  "customer_phone": "+1809000",
  "customer_email": "gggg@gmail.com"
}

RESPONSE:
{
  "id": "617abbbb0f74ea854cfe8869",
  "name": "Lead #1",
  "pipeline_id": "6179558e7100eeb40997f733",
  "status_id": "617957d87100eeb40997f734",
  "manager_id": "617ab1c20f74ea854cfe8864",
  "contact_id": "617ab29c0f74ea854cfe8865",
  "utm_source": "none",
  "utm_medium": "none",
  "utm_campaign": "none",
  "utm_content": "none",
  "utm_term": "none",
  "metrika_cid": "none",
  "google_cid": "none",
  "smart_visitor_id": "none",
  "price": 0,
  "products": [
    {
      "id": "12321321",
      "name": "Porduct #1",
      "category": "none",
      "quantity": 1,
      "price": 2310
    }
  ],
  "custom_fields": [
    {
      "id": "617aa3eb0f74ea854cfe8222",
      "value": "Ivan"
    }
  ],
  "purchase_tax": 0,
  "purchase_shipping": "Самовывоз",
  "rejection_reason": "Нет нужного товара",
  "first_cost": 0,
  "created": 1635424815,
  "last_modified": 1635424815,
  "invoice": "none",
  "entity_link": "none",
  "customer_phone": "+1809000",
  "customer_email": "gggg@gmail.com"
}

📕 Список всех полей (lead):

Обязательное полеНазвание поля в APIТип поляОписание поля
Даnamestring (Name)Название лида
Даpipeline_idstring (Pipeline Id)Идентификатор воронки, в которой находится лид
Даstatus_idstring (Status Id)Статус лида
Нетmanager_idstring (Manager Id)Идентификатор менеджера
Нетcontact_idstring (Contact Id)Идентификатор “карточки” с контактами
Нетutm_sourcestring (Utm Source)UTM source
Нетutm_mediumstring (Utm Medium)UTM medium
Нетutm_campaignstring (Utm Campaign)UTM campaign
Нетutm_contentstring (Utm Content)UTM content
Нетutm_termstring (Utm Term)UTM term
Нетmetrika_cidstring (Metrika Cid)Уникальный идентификатор Яндекс метрики
Нетgoogle_cidstring (Google Cid)Уникальный идентификатор Гугл аналитикс
Даpricenumber (Price)Итоговая цена в лиде
ДаproductsArray of objects (Products)Массив с позициями лида
Даcustom_fieldsArray of objects (Custom Fields)Кастомные поля для лида
Нетpurchase_taxnumber (Purchase Tax)Default: 0Налог
Нетpurchase_shippingnumber (Purchase Shipping)Default: 0Тип доставки
Нетrejection_reasonstring (Rejection Reason)Причина отказа
Нетfirst_costnumber (First Cost)Default: 0Себестоимость заказа
Даcreatedinteger (Created)Дата создания лида
Даlast_modifiedinteger (Last Modified)Дата последнего изменения лида
Нетinvoicestring (Invoice)Default: «none»Счет на который пришла оплата
Нетentity_linkstring (Entity Link)Default: «none»Ссылка на лида
Нетcustomer_emailstring <email> (Customer Email)Почта
Нетcustomer_phonestring (Customer Phone) >= 5 charactersНомер телефона
Нетouter_idstring (Outer Id)Внешний идентификатор лида

Поля в массиве products

Обязательное полеНазвание поля в APIТип поляОписание поля
Нетidstring (Id)Идентификатор продукта
Даnamestring (Name)Название продукта
Даcategorystring (Category)Категория продукта
Даquantityinteger (Quantity)Количество элементов конкретного id в лиде
Даpricenumber (Price)Стоимость продукта

Поля в массиве custom_fields

Обязательное полеНазвание поля в APIТип поляОписание поля
Даidstring (Id)Идентификатор кастомного поля
Даvalueany (Value)Значение кастомного поля

Далее перейти к ⚠️ 7. Создаём сделки (заявки).