Appearance
呼叫时间组-列表
此接口【v1.2.31版本新增】
接口信息
- 接口:
/agent-api/user/{user_id}/dial-time-group - 请求方式:
GET
路由参数
| 参数 | 类型 | 示例 | 解释 | 必填 |
|---|---|---|---|---|
| user_id | string | 5832d184-dd53-42a0-8ace-0bf8d660f4cc | 用户 id | 是 |
请求参数
| 参数 | 类型 | 示例 | 解释 | 必填 |
|---|---|---|---|---|
| page | int | 1 | 页码 | 是 |
| sub_user_id | string | dc53e7e7-3a68-40ae-adfe-63fc00e401d3 | 子账户 id | 否 |
请求示例
cURL
curl -X GET "https://ai.api.longlonglong.cn/agent-api/user/5832d184-dd53-42a0-8ace-0bf8d660f4cc/dial-time-group?page=1" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN"Go
package main
import (
"fmt"
"io/ioutil"
"net/http"
)
func main() {
url := "https://ai.api.longlonglong.cn/agent-api/user/5832d184-dd53-42a0-8ace-0bf8d660f4cc/dial-time-group?page=1"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_TOKEN")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
fmt.Println(string(body))
}JavaScript
const axios = require('axios');
axios.get('https://ai.api.longlonglong.cn/agent-api/user/5832d184-dd53-42a0-8ace-0bf8d660f4cc/dial-time-group', {
params: {
page: 1
},
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_TOKEN'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});Java
import java.net.HttpURLConnection;
import java.net.URL;
public class Main {
public static void main(String[] args) throws Exception {
String url = "https://ai.api.longlonglong.cn/agent-api/user/5832d184-dd53-42a0-8ace-0bf8d660f4cc/dial-time-group?page=1";
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("Content-Type", "application/json");
con.setRequestProperty("Authorization", "Bearer YOUR_TOKEN");
System.out.println("Response Code: " + con.getResponseCode());
}
}PHP
<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://ai.api.longlonglong.cn/agent-api/user/5832d184-dd53-42a0-8ace-0bf8d660f4cc/dial-time-group?page=1",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Authorization: Bearer YOUR_TOKEN"
],
]);
$response = curl_exec($curl);
curl_close($curl);
echo $response;Python
import requests
url = "https://ai.api.longlonglong.cn/agent-api/user/5832d184-dd53-42a0-8ace-0bf8d660f4cc/dial-time-group"
params = {
"page": 1
}
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_TOKEN"
}
response = requests.get(url, params=params, headers=headers)
print(response.json())C++
#include <iostream>
#include <string>
#include <curl/curl.h>
int main() {
CURL* curl;
CURLcode res;
curl = curl_easy_init();
if (curl) {
std::string url = "https://ai.api.longlonglong.cn/agent-api/user/5832d184-dd53-42a0-8ace-0bf8d660f4cc/dial-time-group?page=1";
struct curl_slist* headers = NULL;
headers = curl_slist_append(headers, "Content-Type: application/json");
headers = curl_slist_append(headers, "Authorization: Bearer YOUR_TOKEN");
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers);
res = curl_easy_perform(curl);
if (res != CURLE_OK) {
std::cerr << "curl_easy_perform() failed: " << curl_easy_strerror(res) << std::endl;
}
curl_easy_cleanup(curl);
}
return 0;
}返回参数
json
{
"code": 200,
"status": "success",
"message": "查看呼叫时间组列表成功",
"data": [
{
"id": 1,
"name": "周末拨打组",
"user_id": "4d99d91c-f5d9-49da-88da-758977cc58a9",
"content": [
{
"week": 0,
"times": [
{
"begin_time": "08:00",
"end_time": "20:00"
},
{
"begin_time": "20:30",
"end_time": "22:00"
}
]
},
{
"week": 6,
"times": [
{
"begin_time": "08:00",
"end_time": "12:00"
},
{
"begin_time": "20:30",
"end_time": "22:00"
}
]
}
],
"is_default": false,
"skip_holiday": true,
"remark": null,
"created_at": "2021-12-30 17:03:32",
"updated_at": "2022-01-12 17:32:48",
"tasks": [
{
"name": "代理测试任务名11",
"dial_time_id": 1
},
{
"name": "代理测试任务名3",
"dial_time_id": 1
}
]
}
],
"meta": {
"has_pages": false,
"total": 3,
"last_page": 1,
"current_page": 1,
"per_page": 15
}
}字段说明
| 字段 | 说明 |
|---|---|
| id | 呼叫时间组ID |
| name | 呼叫时间组名称 |
| content | 时间配置 |
| content.week | 星期几(取值范围0~6,0对应周日、1对应周一以此类推) |
| content.times | 具体时间段,可设置多个,取值范围为08:00~22:00 |
| is_default | 是否默认 |
| skip_holiday | 是否跳过节假日 |
| tasks | 已关联的任务(已关联任务的呼叫组不可删除) |