Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Current »

Description

Adds new entries (email, email domain or mobile number) to the system blacklist.

Request path

POST [REST URL]/blacklist/createSystemEntries

Query Parameters

Parameter

Type

Description

groupId

Long

ID of the group, not necessary for system-wide blacklists

Request Body Type

list of BlacklistEntry

Example body 1

[{
"type": "EMAIL",
 "pattern": "test@test.com"
}]


Example body 2
[{
"type": "PHONE_NUMBER",
"pattern": "336789012345"
}]


Example response

[{
    "success": true,
    "id": "test@test.com",
    "errorActor": null,
    "errorCode": null,
    "errorMessage": null
}]
  • No labels