手机号黑名单管理
更新时间:2023-07-21
新增手机号黑名单
通过以下代码可以新增手机号黑名单
try {
$this->client->createMobileBlack($type, $phone, $smsType, $signatureIdStr);
} catch (Exception $exception) {
print_r($exception);
}
查询手机号黑名单
通过以下代码可以查询手机号黑名单
try {
$resp = $this->client->getMobileBlackList($phone, $smsType, $signatureIdStr, $startTime, $endTime, $pageNo, $pageSize);
} catch (Exception $exception) {
print_r($exception);
}
删除手机号黑名单
通过以下代码可以查询手机号黑名单
try {
$this->client->deleteMobileBlack($phones);
} catch (Exception $exception) {
print_r($exception);
}