v1

latestOpenAPI 3.0.02026-07-24226294602.4 KB
Lead Group

Delete Leads from Group

Delete the given Leads from the specified group. If the resulting group has no remaining participants, the group will also be deleted.

delete/leads/group/{group_id}/participants

Path parameters

group_idinteger required

Unique Group ID.

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

group_participantsinteger[]

Example request

{
  "group_participants": [
    1234567891234567
  ]
}

Response

Lead group data.

Example response

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