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