Create comment

Add a comment to a campaign lead.

Parameters. Send the following in the request body. All three are required:

  • creator_user_id (string): The ID of the user creating the comment. This user must already exist.
  • campaign_lead_id (string): The ID of the campaign lead the comment belongs to. This campaign lead must already exist.
  • body (string): The comment text. It cannot be empty.

Returns. { "comments": [ { ... } ] } containing the created comment with its id, created_at timestamp, and success set to true.

Example.

{
  "creator_user_id": "100",
  "campaign_lead_id": "1234",
  "body": "this is your comment content"
}
Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Body Params
string
required

ID of the user creating the comment.

string
required

ID of the campaign lead the comment relates to.

string
required

The comment's text.

Responses

Language
Credentials
:
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json