crmgrow
  • Introduction
  • Authentication
  • REST API
    • Contact
    • Task
    • Automation
    • Material
    • Note
    • Label
    • Template
    • Lead
    • User
  • Events
    • Lead
    • Webhook
Powered by GitBook
On this page
  • Create a Contact
  • Update Contact
  • Add Tag for Zapier

Was this helpful?

  1. REST API

Contact

Create a Contact

POST https://api.crmgrow.com/api/contact

This api allows you to create a contact from zapier

Headers

Name
Type
Description

Authorization*

String

api_key

Content-Type

String

application/json

Request Body

Name
Type
Description

first_name*

String

First name

last_name

String

Last name

email*

String

Email

cell_phone

String

Cell phone

tags

String

Tags

country

string

Country

state

string

State

city

String

City

address

String

Address

zip_code

String

Zip Code

note

String

Note

overide*

Boolean

if it is true, overwrite this for existing contact, otherwise do nothing

label

String

id of Label

{
  "status": true,
  "data": {
    "first_name": "falcon",
    "last_name": "job",
    "email": "falcon@test.com",
    "user": [
      "6008ac3dbc96dc4210ae398f"
    ],
    "shared_members": [],
    "pending_users": [],
    "declined_users": [],
    "shared_team": [],
    "shared_all_member": false,
    "secondary_email": "",
    "cell_phone": "",
    "secondary_phone": "",
    "country": "",
    "tags": [],
    "rate_lock": false,
    "favorite": false,
    "created_at": "2023-11-14T15:11:50.028Z",
    "updated_at": "2023-11-14T15:11:50.028Z",
    "unsubscribed": {
      "email": false,
      "text": false
    },
    "_id": "65538e36022c364426629e0a",
    "owner": "6008ac3dbc96dc4210ae398f",
    "__v": 0,
    "activity": {
      "user": "6008ac3dbc96dc4210ae398f",
      "content": "added",
      "type": "contacts",
      "videos": [],
      "pdfs": [],
      "images": [],
      "contacts": "65538e36022c364426629e0a",
      "to_emails": [],
      "created_at": "2023-11-14T15:11:50.038Z",
      "updated_at": "2023-11-14T15:11:50.038Z",
      "_id": "65538e36022c364426629e0c",
      "__v": 0
    }
  }
}

{
  "status": false,
  "error": {
    "msg": "Invalid value",
    "param": "password",
    "location": "body"
  }
}

Update Contact

PUT https://api.crmgrow.com/api/contact

This api allows you to update a contact from zapier

Headers

Name
Type
Description

Authorization*

String

api_key

Content-Type

String

application/json

Request Body

Name
Type
Description

first_name

String

First name

last_name

String

Last name

email*

String

Email

cell_phone

String

Cell phone

tags

String

Tags

country

string

Country

state

string

State

city

String

City

address

String

Address

zip_code

String

Zip Code

note

String

Note

overide*

Boolean

if it is true, overwrite this for existing contact, otherwise do nothing

label

String

id of Label

{
  "status": true,
  "data": {
    "first_name": "falcon",
    "last_name": "job",
    "email": "falcon@test.com",
    "user": [
      "6008ac3dbc96dc4210ae398f"
    ],
    "shared_members": [],
    "pending_users": [],
    "declined_users": [],
    "shared_team": [],
    "shared_all_member": false,
    "secondary_email": "",
    "cell_phone": "",
    "secondary_phone": "",
    "country": "",
    "tags": [],
    "rate_lock": false,
    "favorite": false,
    "created_at": "2023-11-14T15:11:50.028Z",
    "updated_at": "2023-11-14T15:11:50.028Z",
    "unsubscribed": {
      "email": false,
      "text": false
    },
    "_id": "65538e36022c364426629e0a",
    "owner": "6008ac3dbc96dc4210ae398f",
    "__v": 0,
    "activity": {
      "user": "6008ac3dbc96dc4210ae398f",
      "content": "added",
      "type": "contacts",
      "videos": [],
      "pdfs": [],
      "images": [],
      "contacts": "65538e36022c364426629e0a",
      "to_emails": [],
      "created_at": "2023-11-14T15:11:50.038Z",
      "updated_at": "2023-11-14T15:11:50.038Z",
      "_id": "65538e36022c364426629e0c",
      "__v": 0
    }
  }
}

{
  "status": false,
  "error": {
    "msg": "Invalid value",
    "param": "password",
    "location": "body"
  }
}

Add Tag for Zapier

POST https://api.crmgrow.com/api/contact/push-tag

This api allows you to add one or more tag from Zapier

Headers

Name
Type
Description

Authorization*

string

api_key

Content-Type

String

application/json

Request Body

Name
Type
Description

email*

String

Email

tag*

String

Tag

{
  "status": true
}

PreviousREST APINextTask

Last updated 7 months ago

Was this helpful?