Audience

Delete audience members

Remove specific members from an audience by their member IDs. Users can only delete members from audiences they created.

delete/audience/{id}/members

Path parameters

idstring required
Example:60d0fe4f5311236168a109ca

The unique identifier of the audience

Request body

memberIdsstring[] required

Array of member IDs to delete

Example request

{
  "memberIds": [
    "60d0fe4f5311236168a109cd"
  ]
}

Response

Members deleted successfully

statusboolean

Example response

{
  "status": true,
  "data": {
    "deletedCount": 3
  }
}

Changes

Changed in 1 of the 49 revisions of this API.11

  • 2bfbd089ccb311See the full diff
    • removed the media type application/json for the response with the status 404

      response-media-type-removed

    • removed the non-success response with the status 403

      response-non-success-status-removed