QueueCall
큐 ID에 매칭되는 DataSet 값을 가져올 때 사용되는 API 입니다.
QueueCall API Key Detail (Request)
QueueCall API & Examples
POST
http://{server ip:port}/api/QueueCall
Request
Content-Type: application/json
{
- "QUE_ID":"60165"
}
Response
Content-Type: application/json
"id=yjkim4852,pass=ysj04160416,search=시메이션"
[CheckMATE 이벤트 활용 예제]
- 스크립트 코드 이벤트에 아래와 같은 코드를 통하여 실행되고 있는 큐 ID를 가져올 수 있습니다.
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Text;
public partial class CustomScript
{
public void Execute_Code()
{
Dictionary<string, string> dic1 = CMUtils.ExecutionArguments();
if (dic1.ContainsKey("QUE_ID") == true)
{
string val = dic1 ["QUE_ID"];
}
}
}
Created with the Personal Edition of HelpNDoc: Easy CHM and documentation editor