Suggestions

close search

Get contact list (Manual dialer)

URL: https://icc-api.stringee.com/v1/customcampaign/findcustomermanager

HTTP method: POST

Content-Type: Application/json

Custom HTTP header: Name: X-STRINGEE-AUTH Value: JSON web token (JWT), see Authentication

POST data (body):

{
        campaign: "CA3WVC3R",
        stringee_user_id: "ACTHWN342",
        page: 1
}
Field Type Require Description
campaign String YES Campaign ID
stringee_user_id String YES Stringee account ID
page String YES

Response:

{
        "msg": "Success",
        "r": 0
}
Field Type Require Description
r Int Yes Result code
msg String No Result message

Sample request

POST v1/customcampaign/findcustomermanager HTTP/1.1
Host: https://icc-api.stringee.com
X-STRINGEE-AUTH: json_web_token
Accept: Application/json

{
    "id": "1"
}

Sample response

{
    "msg": "Success"
    "r": 0,
}

Receive customer (Manual dialer)

URL: https://icc-api.stringee.com/v1/customcampaign/receivecustomer

HTTP method: POST

Content-Type: multipart/form-data

Custom HTTP header: Name: X-STRINGEE-AUTH Value: JSON web token (JWT), see Authentication

POST data (body):

{
        campaign: "CA3WVC3R",
        stringee_user_id: "ACTHWN342"
}
Field Type Require Description
campaign String YES Campaign ID
stringee_user_id String YES Stringee account ID

Response:

{
        "msg": "Success",
        "r": 0
}
Field Type Require Description
r Int Yes Result code
msg String No Result message

Sample request

POST v1/customcampaign/receivecustomer HTTP/1.1
Host: https://icc-api.stringee.com
X-STRINGEE-AUTH: json_web_token
Accept: Application/json

{
    "id": "1"
}

Sample response

{
    "msg": "Success"
    "r": 0,
}

Set call-out quota (Manual dialer)

URL: https://icc-api.stringee.com/v1/campagent/setquota

HTTP method: POST

Content-Type: Application/json

Custom HTTP header: Name: X-STRINGEE-AUTH Value: JSON web token (JWT), see Authentication

POST data (body):

{
        agent_id: "AGTHWN342"
        campaign_id: "CA3WVC3R"
        number_customer_day: 10 
}
Field Type Require Description
agent_id String YES Agent ID
campaign_id String YES Campaign ID
number_customer_day Int YES Call-out quota number customer

Response:

{
        "msg": "Success",
        "r": 0
}
Field Type Require Description
r Int Yes Result code
msg String No Result message

Sample request

POST v1/campagent/setquota HTTP/1.1
Host: https://icc-api.stringee.com
X-STRINGEE-AUTH: json_web_token
Accept: Application/json

{
    "id": "1"
}

Sample response

{
    "msg": "Success"
    "r": 0,
}