Skip to main content
POST
/
contacts
/
{contactId}
/
campaigns
/
{campaignId}
Add Contact to Campaign
curl --request POST \
  --url https://services.leadconnectorhq.com/contacts/{contactId}/campaigns/{campaignId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Version: <version>' \
  --data '{}'
{
  "succeded": true
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-07-28

Path Parameters

contactId
string
required

Contact Id

Example:

"3bZD1nQzbul0MCancbQD"

campaignId
string
required

Campaigns Id

Example:

"Y2I9XM7aO1hncuSOlc9L"

Body

application/json

The body is of type object.

Response

Successful response

succeded
boolean
Example:

true

Last modified on March 4, 2026