crmgrow
  • Introduction
  • Authentication
  • REST API
    • Contact
    • Task
    • Automation
    • Material
    • Note
    • Label
    • Template
    • Lead
    • User
  • Events
    • Lead
    • Webhook
Powered by GitBook
On this page
  • Send a video
  • GET List Video
  • Send a pdf
  • GET List PDF
  • Send a image
  • Get List Image

Was this helpful?

  1. REST API

Material

Send a video

POST https://api.crmgrow.com/api/send-video

This api allows you to send a video from Zapier

Headers

Name
Type
Description

Authorization*

string

api_key

Content-Type

String

application/json

Request Body

Name
Type
Description

email*

String

Email

video_id*

String

Id of video

template_id*

String

Id of template

{
  "status": true
}

GET List Video

GET https://api.crmgrow.com/api/video

Trigger when a user selects one of video in his lists.

Headers

Name
Type
Description

Authorization*

string

api_key

Content-Type

String

application/json

[
  {
    "title": "eXp Realty eXplicado en 10 minutos",
    "id": "5d9013f17f2e486584142bd7"
  },
  {
    "title": "Diagram comparing traditional brokerage model to eXp Realty",
    "id": "5de6938d39526c7b22d2f1a0"
  },
  {
    "title": "Canadian - eXp Realty eXplained",
    "id": "5e12b39fdb0cd16ced0647cc"
  },
  {
    "title": "eXp Realty eXplained in 9 Minutes",
    "id": "5e2a05c94d04d37842cc8ff9"
  },
  {
    "title": "The model explained - Brent Gove",
    "id": "5e3dc0ecb567ad080407e05e"
  },
  {
    "title": "eXp Realty eXplained in 9 Minutes",
    "id": "651a1ddd3cb8c6ec61ce5d9a"
  }
]

Send a pdf

POST https://ecsbe.crmgrow.com/api/send-pdf

This Api allows you to send a pdf from Zapier

Headers

Name
Type
Description

Authorization*

string

api_key

Content-Type

String

application/json

Request Body

Name
Type
Description

email*

String

Email

pdf_id*

String

Id of pdf

template_id*

String

Id of template

{
  "status": true
}

GET List PDF

GET https://api.crmgrow.com/api/pdf

Trigger when a user selects one of pdf in his lists.

Headers

Name
Type
Description

Authorization*

string

api_key

Content-Type

String

application/json

[
  {
    "title": "Introduction to eXp Realty",
    "id": "600cbaf74b98a66dfa9ecba5"
  },
  {
    "title": "Introduction to eXp Realty - Canada Presentation",
    "id": "600cbdbd4b98a66dfa9ecda4"
  },
  {
    "title": "Introduction to eXp Realty - Spanish Presentation",
    "id": "600cbf2e4b98a66dfa9ecdb3"
  }
]

Send a image

POST https://api.crmgrow.com/api/send-image

This Api allows you to send an image from Zapier

Headers

Name
Type
Description

Authorization*

string

api_key

Content-Type

String

application/json

Request Body

Name
Type
Description

email*

String

Email

image_id*

String

Id of image

template_id*

String

Id of template

{
  "status": true
}

Get List Image

GET https://api.crmgrow.com/api/image

Trigger when a user selects one of image in his lists.

Headers

Name
Type
Description

Authorization*

string

api_key

Content-Type

String

application/json

[
  {
    "title": "Introduction to eXp Realty",
    "id": "600cbaf74b98a66dfa9ecba5"
  },
  {
    "title": "Introduction to eXp Realty - Canada Presentation",
    "id": "600cbdbd4b98a66dfa9ecda4"
  },
  {
    "title": "Introduction to eXp Realty - Spanish Presentation",
    "id": "600cbf2e4b98a66dfa9ecdb3"
  }
]

PreviousAutomationNextNote

Last updated 7 months ago

Was this helpful?