v1

latestOpenAPI 3.0.02026-07-24226294602.4 KB
Lead Group

Create Lead Group

Creates a group with the given Leads. If any Leads are already in a group, they will be removed from their existing group and added to the new group.

post/leads/group/participants

Headers

x-api-keystring required

A valid API key. If you don't have one, please request one through the Web Integrations screen.

Request body

Example request

{
  "group_participants": [
    {
      "group_participant_lead_id": 1234567891234567,
      "group_role_id": 1234567891234567
    }
  ]
}

Response

Returns the Group data of the newly created Group.

Example response

{
  "client_group": {
    "group_id": 1234567891234567,
    "group_participants": [
      {
        "group_participant_client_id": 1234567891234567,
        "group_role_id": 1234567891234567
      }
    ]
  }
}