POST
/
publisher.v1
/
member
/
bulk-delete
Bulk Delete
curl --request POST \
  --url http://localhost/publisher.v1/member/bulk-delete \
  --header 'Content-Type: application/json' \
  --data '
{
  "member_base_id": "<string>",
  "member_ids": [
    "<string>"
  ]
}
'
true
Delete multiple members from a memberbase in a single request. Members are identified by their ref values. Deleting a member removes their record, all associated attributes, and any transaction history linked to them. This operation is irreversible.

Idempotency

Deleting a member that does not exist is a no-op — the operation succeeds without error. This makes it safe to retry on network failures.

Body

application/json
member_base_id
string
required
member_ids
string[]
required

Response

Successful response

The response is of type boolean.