Skip to main content

Create

API tạo mới một (hoặc nhiều) số blacklist.

curl -L -X POST 'https://{{base_url}}/v1/blacklist' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {{token}}'
--data-raw '{
"blacklist":[
{
"phone_number": "0899990988",
"description": "spam"
},
{
"phone_number": "0899990989",
"description": "dnc"
}
]
}'

Response trả về:

{
"fail": [
{
"0899990988": "phone_number is duplicate"
}
],
"message": "successfully",
"success": ["0899990989"]
}

HTTP Request

POST https://{{base_url}}/v1/blacklist

Body

ParameterDescriptionRequired
blacklistDanh sách số điện thoạix
blacklist.phone_numberSố điện thoạix
blacklist.descriptionChú thích

Remove Blacklists

curl -L -X DELETE 'https://{{base_url}}/v1/blacklist' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer {{token}}'
--data-raw '{
"blacklist":[
"0899990988",
"0899990989"
]
}'

Response trả về:

{
"fail": [],
"message": "successfully",
"success": ["0899990988", "0899990989"]
}

HTTP Request

DELETE https://{{base_url}}/v1/blacklist

Body

ParameterDescriptionRequired
blacklistDanh sách số điện thoạix