当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP WHMCS GetTicket用法及代码示例


获取特定票证

请求参数

参数 类型 说明 必需的
action string “GetTicket” Required
ticketnum string 用于查找票证的特定客户票证号。 Optional
ticketid int 用于查找票证的特定票证 ID(需要 $ticketnum 或 $ticketid)。 Optional
repliessort string ASC 或 DESC。用于组织工单回复的顺序。 Optional

响应参数

参数 类型 说明
result string 操作结果:成功或错误
ticketid int 工单的唯一 ID。
tid string 向最终用户显示的唯一票号字符串。
c string 票证的客户端唯一访问权限。
deptid int 工单所属部门的 ID。
deptname string 工单所属部门的名称。
userid int 工单所属的用户 ID。
contactid int 打开工单的联系人 ID。
name string 票证提交者的姓名。
email string 票证提交者的电子邮件。
requestor_name string 票证提交者的姓名。
requestor_type string 工单提交者的类型。
requestor_email string 票证提交者的电子邮件。
cc string 工单的抄送电子邮件地址。
date string 开票日期。格式:Y-m-d H:i:s
subject string 票的主题。
status string 工单的状态。
priority string 票证的优先级。
admin string 打开工单的管理员用户的名称。
lastreply string 上次回复票证的日期。格式:Y-m-d H:i:s
flag int 票证标记到的管理员用户的 ID。
service string 与票证关联的服务的 ID(Sx 表示服务,Dx 表示域)。
replies array 工单上的一系列回复。
notes array 票据上的一系列注释。

示例请求 (CURL)

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://www.example.com/includes/api.php');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
    http_build_query(
        array(
            'action' => 'GetTicket',
            // See https://developers.whmcs.com/api/authentication
            'username' => 'IDENTIFIER_OR_ADMIN_USERNAME',
            'password' => 'SECRET_OR_HASHED_PASSWORD',
            'ticketid' => '1',
            'responsetype' => 'json',
        )
    )
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);

示例请求(本地 API)

$command = 'GetTicket';
$postData = array(
    'ticketid' => '1',
);
$adminUsername = 'ADMIN_USERNAME'; // Optional for WHMCS 7.2 and later

$results = localAPI($command, $postData, $adminUsername);
print_r($results);

示例响应 JSON

{
    "result": "success",
    "ticketid": "1",
    "tid": "516757",
    "c": "KPqH7yG3",
    "deptid": "1",
    "deptname": "Sample Support Department",
    "userid": "1",
    "contactid": "0",
    "name": "Cynthia Reilly",
    "email": "[email protected]",
    "cc": "",
    "date": "2016-01-01 06:26:29",
    "subject": "This is a sample ticket",
    "status": "Closed",
    "priority": "Medium",
    "admin": "",
    "lastreply": "2016-01-01 06:30:16",
    "flag": "0",
    "service": "",
    "replies": {
        "reply": [
            {
                "replyid": "0",
                "userid": "1",
                "contactid": "0",
                "name": "Cynthia Reilly",
                "email": "[email protected]",
                "requestor_name": "Cynthia Reilly",
                "requestor_email": "[email protected]",
                "requestor_type": "Owner",
                "date": "2016-01-01 06:26:29",
                "message": "Hey, \r\n\r\nThis is the first ticket message!\r\n\r\nThanks\r\n\r\nCynthia",
                "attachment": "123456_attachment_name.png",
                "attachments": [
                    {
                        "filename": "attachment_name.png",
                        "index": 0
                    }
                ],
                "attachments_removed": true,
                "admin": ""
            },
            {
                "replyid": "1",
                "userid": "1",
                "contactid": "0",
                "name": "",
                "email": "",
                "requestor_name": "Demo Admin",
                "requestor_email": "",
                "requestor_type": "Operator",
                "date": "2016-01-01 06:27:01",
                "message": "Hello, \r\n\r\nThis is the first ticket reply by an admin user!\r\n\r\nThanks\r\n\r\nDemo Admin",
                "attachment": "",
                "attachments": [
                    []
                ],
                "attachments_removed": false,
                "admin": "Demo Admin",
                "rating": "0"
            },
            {
                "replyid": "2",
                "userid": "1",
                "contactid": "0",
                "name": "",
                "email": "",
                "requestor_name": "Cynthia Reilly",
                "requestor_email": "[email protected]",
                "requestor_type": "Owner",
                "date": "2016-01-01 06:30:16",
                "message": "Hey, \r\n\r\nThis is a second reply!\r\n\r\nThanks\r\n\r\nCynthia",
                "attachment": "",
                "attachments": [
                    []
                ],
                "attachments_removed": false,
                "admin": "",
                "rating": "0"
            }
        ]
    },
    "notes": {
        "note": [
            {
                "noteid": "1",
                "date": "2016-01-01 06:26:42",
                "message": "This is a ticket note",
                "attachment": "",
                "attachments": [
                    []
                ],
                "attachments_removed": false,
                "admin": "Demo Admin"
            }
        ]
    }
}

相关用法


注:本文由纯净天空筛选整理自whmcs.com大神的英文原创作品 GetTicket。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。