POST api/blacklist?multiple={multiple}
Creates multiple new blacklist entries with the given information
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| multiple |
Any value is valid eg. 1, true, yes, etc. |
string |
Required |
Body Parameters
Blacklist data of new entries
Collection of BlacklistEntryNewDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| Phone |
Blacklisted phone number |
string |
Required |
Request Formats
application/json, text/json
Sample:
[
{
"Phone": "sample string 1"
},
{
"Phone": "sample string 1"
}
]
Response Information
Resource Description
New blacklist entries
Collection of BlacklistEntryDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
Blacklist entry ID |
integer |
None. |
| Created |
Timestamp when blacklist entry was added |
date |
None. |
| Phone |
Blacklisted phone number |
string |
Required |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Created": "2025-12-16T03:27:22.0278276+00:00",
"Phone": "sample string 2"
},
{
"ID": 1,
"Created": "2025-12-16T03:27:22.0278276+00:00",
"Phone": "sample string 2"
}
]