crmgrow
  • Introduction
  • Authentication
  • REST API
    • Contact
    • Task
    • Automation
    • Material
    • Note
    • Label
    • Template
    • Lead
    • User
  • Events
    • Lead
    • Webhook
Powered by GitBook
On this page
  • Webhook subscription.
  • Webhook unsubscription.
  • Perform List for Add contact

Was this helpful?

  1. Events

Webhook

Action

add_contact

update_contact

delete_contact

add_deal

move_deal

send_material

watch_material

assigned_automation

create_note

update_note

delete_note

create_task

update_task

delete_task

lead_source

Webhook subscription.

POST https://api.crmgrow.com/api/outbound/subscribe

the endpoint URL to create a new Webhook subscription..

action should be the following values

Headers

Name
Type
Description

Authorization

string

Authentication token

Request Body

Name
Type
Description

hookUrl*

string

targetUrl

action*

string

add_contact

{

_id: "167846091958670516020-bf55-11ed-9e2e-ed990aca2af3"

}

Webhook unsubscription.

DELETE https://api.crmgrow.com/api/outbound/unsubscribe

the endpoint URL to remove a Webhook subscription.

subscribeData.id is the value that is registered by subscribe.

Query Parameters

Name
Type
Description

*

String

subscribeData.id

Headers

Name
Type
Description

Authorization

string

Authentication token

{
   status: true
}

Perform List for Add contact

GET https://api.crmgrow.com/api/outbound/perform

the endpoint URL Zapier should check for recent items, to provide sample data in the Zap Editor.

Headers

Name
Type
Description

Authorization*

string

Authentication token

action*

string

action

[
  {
    "id": "65538e36022c364426629e0a",
    "first_name": "falcon",
    "last_name": "job",
    "email": "falcon@test.com",
    "cell_phone": "",
    "country": "",
    "label": "",
    "tags": [
      "task",
      null
    ],
    "secondary_email": "",
    "secondary_phone": "",
    "created_at": "2023-11-14T15:11:50.028Z"
  }
]
PreviousLead

Last updated 7 months ago

Was this helpful?