业务统计
更新时间:2023-11-09
获取下发短信的业务统计信息
通过以下代码,可以查询短信的业务统计信息
PHP
1// set parameters
2$startTime = "2023-10-01";
3$endTime = "2023-11-01";
4$smsType = "all";
5$countryType = "domestic";
6try {
7 $resp = $this->client->listStatistics($startTime, $endTime, $smsType, $countryType);
8} catch (Exception $exception) {
9 print_r($exception);
10}
提示:详细参数配置及限制条件,可以参考SMS API 文档业务统计