ACD

/ACD/Agents GET v1

https://api.callone.de/v1000/json///ACD/Agents

NameValueTypeRequ.ValuesDescription
filterString-blocked
destination
id
name
skill_group_id
skill_group_is_active
skill_group_prio
status_id
sortString-calls_last_time
destination
id
name
skill_group_prio
status_id
status_time
expandString-destinations
image
password
permissions
pi
pin
profiles
profiles.announcement
profiles.image
sip_user
skill_groups
{
  "version": {
    "used": "v1000",
    "expire": "none",
    "new_available": "v1000"
  },
  "response": {
    "count": 2,
    "data": [
      {
        "id": 12345,                                                /* Unique Agent ID */
        "name": "Jon Doe",                                          /* Name of Agent */
        "pin": "918273",                                            /* Password of Agent */
        "external_id": "0011223344",                                /* External CRM User ID, forwarded by CallConnect API */
        "status": {
          "id": 1,                                                  /* Current status ID of Agent */
          "name": "Verfügbar",                                      /* Current status name of Agent (german) */
          "message": "Ready to Rumble"                              /* User defined status message */
        },
        "supervisor": true,                                         /* Supervisor permission */
        "destination": "0001000001",                                /* Linked VOIP endpoint */
        "settings": {
          "inbound": {
            "na": 30                                                /* Postprocessing Time for Inbound Calls */
          },
          "outbound": {
            "na": 60                                                /* Postprocessing Time for Outbound Calls */
            "skill_group": 1234                                     /* Selected Outbound Skill Group ID */
          }
        },
        "description": null                                         /* Additional agent description */
      },
      {
        "id": 12346,                                                /* Unique Agent ID */
        "name": "Jane Doe",                                         /* Name of Agent */
        "pin": "827364",                                            /* Password of Agent */
        "external_id": "1122334455",                                /* External CRM User ID, forwarded by CallConnect API */
        "status": {
          "id": 6,                                                  /* Current status ID of Agent */
          "name": "Nicht Verfügbar",                                /* Current status name of Agent (german) */
          "message": null                                           /* User defined status message */
        },
        "supervisor": false,                                        /* Supervisor permission */
        "destination": "0001000002",                                /* Linked VOIP endpoint */
        "settings": {
          "inbound": {
            "na": 30                                                /* Postprocessing Time for Inbound Calls */
          },
          "outbound": {
            "na": 60                                                /* Postprocessing Time for Outbound Calls */
            "skill_group": null                                     /* Selected Outbound Skill Group ID */
          }
        },
        "description": null                                         /* Additional agent description */
      }
    ]
  }
}
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents'

response_json = requests.get (url, data=api_parameters)

/ACD/Agents POST v1

https://api.callone.de/v1000/json///ACD/Agents

NameValueTypeRequ.ValuesDescription
nameStringYes
pi_mailStringYes
blockedString-false
true
status_idNumber-
supervisorString-false
true
inbound_priorityNumber-
inbound_naNumber-
outbound_provided_numberString-
outbound_skill_groupString-
outbound_naNumber-
pi_companyString-
pi_company_locationString-
pi_company_typeString-
pi_company_vatString-
pi_company_taxString-
pi_billing_trade_registerString-
pi_billing_mwst_billingString-false
true
pi_billing_eu_agentString-false
true
pi_billing_no_billingString-false
true
pi_firstnameString-
pi_lastnameString-
pi_address_streetString-
pi_address_zipcodeNumber-
pi_address_cityString-
pi_address_countryString-
pi_phoneString-
pi_faxString-
pi_birthdayDate-
curl -X POST "https://api.callone.de/v1000/json///ACD/Agents" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents'

response_json = requests.post (url, data=api_parameters)

/ACD/Agents/AID GET v1

https://api.callone.de/v1000/json///ACD/Agents/AID

NameValueTypeRequ.ValuesDescription
AIDURLYes
expandString-destinations
image
password
permissions
pi
pin
profiles
profiles.announcement
profiles.image
sip_user
skill_groups
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/AID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID'

response_json = requests.get (url, data=api_parameters)

/ACD/Agents/AID PATCH v1

https://api.callone.de/v1000/json///ACD/Agents/AID

NameValueTypeRequ.ValuesDescription
AIDURLYes
blockedString-false
true
status_idNumber-
supervisorString-false
true
inbound_priorityNumber-
inbound_naNumber-
outbound_provided_numberString-
outbound_skill_groupString-
outbound_naNumber-
pi_companyString-
pi_company_locationString-
pi_company_typeString-
pi_company_vatString-
pi_company_taxString-
pi_billing_trade_registerString-
pi_billing_mwst_billingString-false
true
pi_billing_eu_agentString-false
true
pi_billing_no_billingString-false
true
pi_firstnameString-
pi_lastnameString-
pi_address_streetString-
pi_address_zipcodeNumber-
pi_address_cityString-
pi_address_countryString-
pi_phoneString-
pi_faxString-
pi_birthdayDate-
curl -X PATCH "https://api.callone.de/v1000/json///ACD/Agents/AID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID'

response_json = requests.patch (url, data=api_parameters)

/ACD/Agents/AID DELETE v1

https://api.callone.de/v1000/json///ACD/Agents/AID

NameValueTypeRequ.ValuesDescription
AIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///ACD/Agents/AID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID'

response_json = requests.delete (url)

/ACD/Agents/AID/BankAccount POST v1

https://api.callone.de/v1000/json///ACD/Agents/AID/BankAccount

NameValueTypeRequ.ValuesDescription
AIDURLYes
account_ownerStringYes
ibanStringYes
bank_nameStringYes
account_labelString-
bicString-
curl -X POST "https://api.callone.de/v1000/json///ACD/Agents/AID/BankAccount" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/BankAccount';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/BankAccount'

response_json = requests.post (url, data=api_parameters)

/ACD/Agents/AID/Destinations GET v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations

NameValueTypeRequ.ValuesDescription
AIDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations'

response_json = requests.get (url)

/ACD/Agents/AID/Destinations POST v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations

NameValueTypeRequ.ValuesDescription
AIDURLYes
destinationStringYes
descriptionStringYes
activeString-false
true
hideString-false
true
curl -X POST "https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations'

response_json = requests.post (url, data=api_parameters)

/ACD/Agents/AID/Destinations/COUNT GET v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations/COUNT

NameValueTypeRequ.ValuesDescription
AIDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations/COUNT'

response_json = requests.get (url)

/ACD/Agents/AID/Destinations/DID GET v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations/DID

NameValueTypeRequ.ValuesDescription
AIDURLYes
DIDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations/DID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations/DID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Destinations/DID'

response_json = requests.get (url)

/ACD/Agents/AID/Destinations/ID PATCH v1

https://api.callone.de/v1000/json///ACD/Agents/ID_376122909_placeholder">AID/Destinations/ID

NameValueTypeRequ.ValuesDescription
AIDURLYes
IDURLYes
destinationString-
descriptionString-
activeString-false
true
hideString-false
true
curl -X PATCH "https://api.callone.de/v1000/json///ACD/Agents/ID_376122909_placeholder">AID/Destinations/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_376122909_placeholder">AID/Destinations/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_376122909_placeholder">AID/Destinations/ID'

response_json = requests.patch (url, data=api_parameters)

/ACD/Agents/AID/Destinations/ID DELETE v1

https://api.callone.de/v1000/json///ACD/Agents/ID_1223755837_placeholder">AID/Destinations/ID

NameValueTypeRequ.ValuesDescription
AIDURLYes
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///ACD/Agents/ID_1223755837_placeholder">AID/Destinations/ID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_1223755837_placeholder">AID/Destinations/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_1223755837_placeholder">AID/Destinations/ID'

response_json = requests.delete (url)

/ACD/Agents/AID/Permissions GET v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Permissions

NameValueTypeRequ.ValuesDescription
AIDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/AID/Permissions"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Permissions';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Permissions'

response_json = requests.get (url)

/ACD/Agents/AID/Permissions PATCH v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Permissions

NameValueTypeRequ.ValuesDescription
AIDURLYes
skill_changeString-false
true
status_change_busyString-false
true
other_agentenNumber-
other_agenten_skillNumber-
calls_waitString-false
true
outbound_callsNumber-
outbound_skillgroupNumber-
call_displayString-false
true
view_callerString-false
true
view_numberString-false
true
view_routing_descriptionString-false
true
view_statusdauerString-false
true
view_zielString-false
true
pb_allowString-false
true
pb_entry_viewNumber-
pb_entry_editString-false
true
pb_entry_groupNumber-
pb_view_groupString-false
true
pb_view_notesString-false
true
allow_stat_msgString-false
true
allow_stat_msg_viewString-false
true
anruferlisten_allowString-false
true
call_coding_allowNumber-
view_skillgroupsNumber-
view_timelineString-false
true
view_me_todayString-false
true
view_other_agents_imgString-false
true
view_is_recordingString-false
true
recording_allowString-false
true
recording_label_allowString-false
true
lang_defaultString-false
true
auto_open_indiv_linkNumber-
webrtc_allowString-false
true
allow_status_13String-false
true
call_votingString-false
true
conference_allowString-false
true
agentboard_beta_agentString-false
true
mp_allow_onlinezeitString-false
true
mp_allow_statistikString-false
true
mp_allow_statusdauerString-false
true
mp_allow_abrechnungenString-false
true
show_inactive_agentsString-false
true
idle_iframe_urlString-
push_to_iframeString-false
true
push_to_urlString-
dialpad_voipString-false
true
show_wallboard_reach_overflowString-false
true
curl -X PATCH "https://api.callone.de/v1000/json///ACD/Agents/AID/Permissions" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Permissions';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Permissions'

response_json = requests.patch (url, data=api_parameters)

/ACD/Agents/AID/Profiles GET v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles

NameValueTypeRequ.ValuesDescription
AIDURLYes
expandString-announcement
image
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles'

response_json = requests.get (url, data=api_parameters)

/ACD/Agents/AID/Profiles POST v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles

NameValueTypeRequ.ValuesDescription
AIDURLYes
profilNumberYes
nicknameStringYes
directdialingNumberYes
description_fullString-
description_shortString-
activeString-false
true
curl -X POST "https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles'

response_json = requests.post (url, data=api_parameters)

/ACD/Agents/AID/Profiles/COUNT GET v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles/COUNT

NameValueTypeRequ.ValuesDescription
AIDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles/COUNT'

response_json = requests.get (url)

/ACD/Agents/AID/Profiles/ID PATCH v1

https://api.callone.de/v1000/json///ACD/Agents/ID_381995974_placeholder">AID/Profiles/ID

NameValueTypeRequ.ValuesDescription
AIDURLYes
IDURLYes
profilNumber-
nicknameString-
directdialingNumber-
description_fullString-
description_shortString-
activeString-false
true
curl -X PATCH "https://api.callone.de/v1000/json///ACD/Agents/ID_381995974_placeholder">AID/Profiles/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_381995974_placeholder">AID/Profiles/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_381995974_placeholder">AID/Profiles/ID'

response_json = requests.patch (url, data=api_parameters)

/ACD/Agents/AID/Profiles/ID DELETE v1

https://api.callone.de/v1000/json///ACD/Agents/ID_78619653_placeholder">AID/Profiles/ID

NameValueTypeRequ.ValuesDescription
AIDURLYes
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///ACD/Agents/ID_78619653_placeholder">AID/Profiles/ID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_78619653_placeholder">AID/Profiles/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_78619653_placeholder">AID/Profiles/ID'

response_json = requests.delete (url)

/ACD/Agents/AID/Profiles/PID GET v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles/PID

NameValueTypeRequ.ValuesDescription
AIDURLYes
PIDURLYes
expandString-announcement
image
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles/PID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles/PID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Profiles/PID'

response_json = requests.get (url, data=api_parameters)

/ACD/Agents/AID/Status GET v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Status

NameValueTypeRequ.ValuesDescription
AIDURLYes
start_dateDate-
end_dateDate-
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/AID/Status" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Status?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Status'

response_json = requests.get (url, data=api_parameters)

/ACD/Agents/AID/Status/Times GET v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Status/Times

NameValueTypeRequ.ValuesDescription
AIDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/AID/Status/Times"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Status/Times';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Status/Times'

response_json = requests.get (url)

/ACD/Agents/AID/Status/Times POST v1

https://api.callone.de/v1000/json///ACD/Agents/AID/Status/Times

NameValueTypeRequ.ValuesDescription
AIDURLYes
timeTimeYes
daysObjectYes
status_idNumberYes
curl -X POST "https://api.callone.de/v1000/json///ACD/Agents/AID/Status/Times" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Status/Times';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/AID/Status/Times'

response_json = requests.post (url, data=api_parameters)

/ACD/Agents/AID/Status/Times/ID PATCH v1

https://api.callone.de/v1000/json///ACD/Agents/ID_1352777907_placeholder">AID/Status/Times/ID

NameValueTypeRequ.ValuesDescription
AIDURLYes
IDURLYes
timeTime-
daysObject-
status_idNumber-
curl -X PATCH "https://api.callone.de/v1000/json///ACD/Agents/ID_1352777907_placeholder">AID/Status/Times/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_1352777907_placeholder">AID/Status/Times/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_1352777907_placeholder">AID/Status/Times/ID'

response_json = requests.patch (url, data=api_parameters)

/ACD/Agents/AID/Status/Times/ID DELETE v1

https://api.callone.de/v1000/json///ACD/Agents/ID_1415201876_placeholder">AID/Status/Times/ID

NameValueTypeRequ.ValuesDescription
AIDURLYes
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///ACD/Agents/ID_1415201876_placeholder">AID/Status/Times/ID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_1415201876_placeholder">AID/Status/Times/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Agents/ID_1415201876_placeholder">AID/Status/Times/ID'

response_json = requests.delete (url)

/ACD/Agents/COUNT GET v1

https://api.callone.de/v1000/json///ACD/Agents/COUNT

NameValueTypeRequ.ValuesDescription
filterString-blocked
destination
id
name
skill_group_id
skill_group_is_active
skill_group_prio
status_id
curl -X GET "https://api.callone.de/v1000/json///ACD/Agents/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Agents/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Agents/COUNT'

response_json = requests.get (url, data=api_parameters)

/ACD/Billing/Invoices GET v1

https://api.callone.de/v1000/json///ACD/Billing/Invoices

NameValueTypeRequ.ValuesDescription
filterString-agent_id
created
customer_id
id
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///ACD/Billing/Invoices" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Billing/Invoices?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Billing/Invoices'

response_json = requests.get (url, data=api_parameters)

/ACD/Billing/Invoices/COUNT GET v1

https://api.callone.de/v1000/json///ACD/Billing/Invoices/COUNT

NameValueTypeRequ.ValuesDescription
filterString-agent_id
created
customer_id
id
curl -X GET "https://api.callone.de/v1000/json///ACD/Billing/Invoices/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Billing/Invoices/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Billing/Invoices/COUNT'

response_json = requests.get (url, data=api_parameters)

/ACD/Billing/Invoices/ID GET v1

https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID'

response_json = requests.get (url)

/ACD/Billing/Invoices/ID/Action/ACTION GET v1

https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID/Action/ACTION

NameValueTypeRequ.ValuesDescription
IDURLYes
ACTIONURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID/Action/ACTION"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID/Action/ACTION';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID/Action/ACTION'

response_json = requests.get (url)

/ACD/Billing/Invoices/ID/File GET v1

https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID/File

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID/File"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID/File';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Billing/Invoices/ID/File'

response_json = requests.get (url)

/ACD/CDR GET v1

https://api.callone.de/v1000/json///ACD/CDR

NameValueTypeRequ.ValuesDescription
start_dateDate-
start_timeTime-
end_dateDate-
end_timeTime-
filterString-agent_id
cdr_id
direction
id
skillgroup_id
success
sortString-created
id
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///ACD/CDR" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/CDR?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/CDR'

response_json = requests.get (url, data=api_parameters)

/ACD/CDR/COUNT GET v1

https://api.callone.de/v1000/json///ACD/CDR/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
start_timeTime-
end_dateDate-
end_timeTime-
filterString-agent_id
cdr_id
direction
id
skillgroup_id
success
curl -X GET "https://api.callone.de/v1000/json///ACD/CDR/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/CDR/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/CDR/COUNT'

response_json = requests.get (url, data=api_parameters)

/ACD/CDR/ID GET v1

https://api.callone.de/v1000/json///ACD/CDR/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/CDR/ID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/CDR/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/CDR/ID'

response_json = requests.get (url)

/ACD/Settings GET v1

https://api.callone.de/v1000/json///ACD/Settings

curl -X GET "https://api.callone.de/v1000/json///ACD/Settings"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Settings';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Settings'

response_json = requests.get (url)

/ACD/Settings/Permissions GET v1

https://api.callone.de/v1000/json///ACD/Settings/Permissions

curl -X GET "https://api.callone.de/v1000/json///ACD/Settings/Permissions"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Settings/Permissions';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Settings/Permissions'

response_json = requests.get (url)

/ACD/Settings/Status GET v1

https://api.callone.de/v1000/json///ACD/Settings/Status

curl -X GET "https://api.callone.de/v1000/json///ACD/Settings/Status"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Settings/Status';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Settings/Status'

response_json = requests.get (url)

/ACD/Settings/Status/COUNT GET v1

https://api.callone.de/v1000/json///ACD/Settings/Status/COUNT

curl -X GET "https://api.callone.de/v1000/json///ACD/Settings/Status/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Settings/Status/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Settings/Status/COUNT'

response_json = requests.get (url)

/ACD/Settings/Status/ID GET v1

https://api.callone.de/v1000/json///ACD/Settings/Status/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/Settings/Status/ID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/Settings/Status/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/Settings/Status/ID'

response_json = requests.get (url)

/ACD/SkillGroups GET v1

https://api.callone.de/v1000/json///ACD/SkillGroups

curl -X GET "https://api.callone.de/v1000/json///ACD/SkillGroups"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/SkillGroups';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/SkillGroups'

response_json = requests.get (url)

/ACD/SkillGroups/COUNT GET v1

https://api.callone.de/v1000/json///ACD/SkillGroups/COUNT

curl -X GET "https://api.callone.de/v1000/json///ACD/SkillGroups/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/COUNT'

response_json = requests.get (url)

/ACD/SkillGroups/SID GET v1

https://api.callone.de/v1000/json///ACD/SkillGroups/SID

NameValueTypeRequ.ValuesDescription
SIDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/SkillGroups/SID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/SID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/SID'

response_json = requests.get (url)

/ACD/SkillGroups/SID DELETE v1

https://api.callone.de/v1000/json///ACD/SkillGroups/SID

NameValueTypeRequ.ValuesDescription
SIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///ACD/SkillGroups/SID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/SID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/SID'

response_json = requests.delete (url)

/ACD/SkillGroups/SID/Members GET v1

https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members

NameValueTypeRequ.ValuesDescription
SIDURLYes
curl -X GET "https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members'

response_json = requests.get (url)

/ACD/SkillGroups/SID/Members POST v1

https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members

NameValueTypeRequ.ValuesDescription
SIDURLYes
agent_idNumberYes
priorityNumber-
is_activeString-false
true
is_lockedString-false
true
curl -X POST "https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members'

response_json = requests.post (url, data=api_parameters)

/ACD/SkillGroups/SID/Members/AID DELETE v1

https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members/AID

NameValueTypeRequ.ValuesDescription
SIDURLYes
AIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members/AID"
<?php
$url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members/AID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///ACD/SkillGroups/SID/Members/AID'

response_json = requests.delete (url)

/ACD/Statistics/Agents GET v1

https://api.callone.de/v1000/json///ACD/Statistics/Agents

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-agent_id
direction
duration
ringing
skill_group_id
success
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/Agents" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/Agents/CallCoding GET v1

https://api.callone.de/v1000/json///ACD/Statistics/Agents/CallCoding

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-agent_id
duration
id
ringing
skill_group_id
success
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/Agents/CallCoding" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/CallCoding?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/CallCoding'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/Agents/CallCoding/Days GET v1

https://api.callone.de/v1000/json///ACD/Statistics/Agents/CallCoding/Days

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-agent_id
duration
id
ringing
skill_group_id
success
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/Agents/CallCoding/Days" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/CallCoding/Days?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/CallCoding/Days'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/Agents/Days GET v1

https://api.callone.de/v1000/json///ACD/Statistics/Agents/Days

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-agent_id
direction
duration
ringing
skill_group_id
success
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/Agents/Days" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/Days?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/Days'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/Agents/EVN GET v1

https://api.callone.de/v1000/json///ACD/Statistics/Agents/EVN

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-agent_id
cdr_id
coding_id
direction
duration
id
ringing
skillgroup_id
success
sortString-id
limitNumber-
offsetNumber-
expandString-coding
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/Agents/EVN" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/EVN?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/EVN'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/Agents/EVN/COUNT GET v1

https://api.callone.de/v1000/json///ACD/Statistics/Agents/EVN/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-agent_id
cdr_id
coding_id
direction
duration
id
ringing
skillgroup_id
success
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/Agents/EVN/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/EVN/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/EVN/COUNT'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/Agents/HalfHours GET v1

https://api.callone.de/v1000/json///ACD/Statistics/Agents/HalfHours

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-agent_id
direction
duration
ringing
skill_group_id
success
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/Agents/HalfHours" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/HalfHours?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/HalfHours'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/Agents/Hours GET v1

https://api.callone.de/v1000/json///ACD/Statistics/Agents/Hours

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-agent_id
direction
duration
ringing
skill_group_id
success
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/Agents/Hours" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/Hours?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/Hours'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/Agents/Top GET v1

https://api.callone.de/v1000/json///ACD/Statistics/Agents/Top

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/Agents/Top" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/Top?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/Agents/Top'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
call_statusString-overflow
successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
skill_group_id
success
wait_duration
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/CallCoding GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/CallCoding

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
call_statusString-overflow
successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
id
skill_group_id
wait_duration
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/CallCoding" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/CallCoding?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/CallCoding'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/CallCoding/Days GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/CallCoding/Days

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
call_statusString-overflow
successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
id
skill_group_id
wait_duration
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/CallCoding/Days" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/CallCoding/Days?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/CallCoding/Days'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/Days GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Days

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
call_statusString-overflow
successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
skill_group_id
success
wait_duration
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Days" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Days?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Days'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/EVN GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/EVN

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
call_statusString-overflow
successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-cdr_id
coding_id
duration
id
skillgroup_id
wait_duration
sortString-id
limitNumber-
offsetNumber-
expandString-coding
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/EVN" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/EVN?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/EVN'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/EVN/COUNT GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/EVN/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
call_statusString-overflow
successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-cdr_id
coding_id
duration
id
skillgroup_id
wait_duration
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/EVN/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/EVN/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/EVN/COUNT'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/HalfHours GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/HalfHours

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
call_statusString-overflow
successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
skill_group_id
success
wait_duration
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/HalfHours" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/HalfHours?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/HalfHours'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/Hours GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Hours

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
call_statusString-overflow
successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
skill_group_id
success
wait_duration
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Hours" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Hours?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Hours'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/Outbound GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
call_statusString-successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
skill_group_id
type
sortString-skill_group_name
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/Outbound/CallCoding GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/CallCoding

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
id
skill_group_id
type
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/CallCoding" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/CallCoding?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/CallCoding'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/Outbound/CallCoding/Days GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/CallCoding/Days

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
id
skill_group_id
type
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/CallCoding/Days" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/CallCoding/Days?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/CallCoding/Days'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/Outbound/Days GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/Days

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
call_statusString-successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
skill_group_id
type
sortString-skill_group_name
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/Days" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/Days?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/Days'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/Outbound/EVN GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/EVN

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
call_statusString-successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-agent_id
cdr_id
coding_id
duration
id
skillgroup_id
type
sortString-id
limitNumber-
offsetNumber-
expandString-coding
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/EVN" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/EVN?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/EVN'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/Outbound/EVN/COUNT GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/EVN/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
call_statusString-successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-agent_id
cdr_id
coding_id
duration
id
skillgroup_id
type
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/EVN/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/EVN/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/EVN/COUNT'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/Outbound/HalfHours GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/HalfHours

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
call_statusString-successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
skill_group_id
type
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/HalfHours" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/HalfHours?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/HalfHours'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/SkillGroups/Outbound/Hours GET v1

https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/Hours

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
call_statusString-successful
unsuccessful
caller_list_idNumber-
caller_list_modeString-exclude
restrict
filterString-duration
skill_group_id
type
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/Hours" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/Hours?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/SkillGroups/Outbound/Hours'

response_json = requests.get (url, data=api_parameters)

/ACD/Statistics/Status GET v1

https://api.callone.de/v1000/json///ACD/Statistics/Status

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
curl -X GET "https://api.callone.de/v1000/json///ACD/Statistics/Status" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///ACD/Statistics/Status?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///ACD/Statistics/Status'

response_json = requests.get (url, data=api_parameters)
AgentBoard

/AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/CallCoding POST v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/CallCoding

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
CALL_IDURLYes
idNumberYes
resetString-false
true
curl -X POST "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/CallCoding" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/CallCoding';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/CallCoding'

response_json = requests.post (url, data=api_parameters)

/AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/CallCoding DELETE v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/CallCoding

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
CALL_IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/CallCoding"
<?php
$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/CallCoding';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/CallCoding'

response_json = requests.delete (url)

/AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/DTMF GET v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/DTMF

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
CALL_IDURLYes
keysNumberYes
curl -X GET "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/DTMF" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/DTMF?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/DTMF'

response_json = requests.get (url, data=api_parameters)

/AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Hangup GET v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Hangup

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
CALL_IDURLYes
causeString-BUSY
NOANSWER
NORESPONSE
REJECTED
curl -X GET "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Hangup" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Hangup?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Hangup'

response_json = requests.get (url, data=api_parameters)

/AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Hold GET v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Hold

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
CALL_IDURLYes
curl -X GET "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Hold"
<?php
$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Hold';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Hold'

response_json = requests.get (url)

/AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Record GET v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Record

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
CALL_IDURLYes
curl -X GET "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Record"
<?php
$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Record';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Record'

response_json = requests.get (url)

/AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/RecordSettings POST v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/RecordSettings

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
CALL_IDURLYes
labelStringYes
curl -X POST "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/RecordSettings" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/RecordSettings';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/RecordSettings'

response_json = requests.post (url, data=api_parameters)

/AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Vote GET v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Vote

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
CALL_IDURLYes
votingNumberYes
curl -X GET "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Vote" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Vote?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/CALL_ID/Vote'

response_json = requests.get (url, data=api_parameters)

/AgentBoard/AGENT_ID/DISPLAY_ID/Conference GET v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Conference

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
curl -X GET "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Conference"
<?php
$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Conference';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Conference'

response_json = requests.get (url)

/AgentBoard/AGENT_ID/DISPLAY_ID/Display GET v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Display

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
curl -X GET "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Display"
<?php
$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Display';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Display'

response_json = requests.get (url)

/AgentBoard/AGENT_ID/DISPLAY_ID/Enquiry GET v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Enquiry

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
destinationStringYes
curl -X GET "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Enquiry" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Enquiry?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Enquiry'

response_json = requests.get (url, data=api_parameters)

/AgentBoard/AGENT_ID/DISPLAY_ID/Transfer GET v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Transfer

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
DISPLAY_IDURLYes
destinationString-
curl -X GET "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Transfer" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Transfer?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/DISPLAY_ID/Transfer'

response_json = requests.get (url, data=api_parameters)

/AgentBoard/AGENT_ID/Displays GET v1

https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/Displays

NameValueTypeRequ.ValuesDescription
AGENT_IDURLYes
curl -X GET "https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/Displays"
<?php
$url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/Displays';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///AgentBoard/AGENT_ID/Displays'

response_json = requests.get (url)
Billing

/Billing/Invoices GET v1

https://api.callone.de/v1000/json///Billing/Invoices

NameValueTypeRequ.ValuesDescription
filterString-created
id
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Billing/Invoices" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Billing/Invoices?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Billing/Invoices'

response_json = requests.get (url, data=api_parameters)

/Billing/Invoices/COUNT GET v1

https://api.callone.de/v1000/json///Billing/Invoices/COUNT

NameValueTypeRequ.ValuesDescription
filterString-created
id
curl -X GET "https://api.callone.de/v1000/json///Billing/Invoices/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Billing/Invoices/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Billing/Invoices/COUNT'

response_json = requests.get (url, data=api_parameters)

/Billing/Invoices/ID GET v1

https://api.callone.de/v1000/json///Billing/Invoices/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
expandString-file
curl -X GET "https://api.callone.de/v1000/json///Billing/Invoices/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Billing/Invoices/ID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Billing/Invoices/ID'

response_json = requests.get (url, data=api_parameters)

/Billing/Invoices/ID/File GET v1

https://api.callone.de/v1000/json///Billing/Invoices/ID/File

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Billing/Invoices/ID/File"
<?php
$url = 'https://api.callone.de/v1000/json///Billing/Invoices/ID/File';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Billing/Invoices/ID/File'

response_json = requests.get (url)

/Billing/Preview GET v1

https://api.callone.de/v1000/json///Billing/Preview

NameValueTypeRequ.ValuesDescription
monthString-
curl -X GET "https://api.callone.de/v1000/json///Billing/Preview" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Billing/Preview?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Billing/Preview'

response_json = requests.get (url, data=api_parameters)
Callback

/Callback/ GET v2

https://api.callone.de/v1010/json///Callback/

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
filterString-cancellation
done_date_time
done_state
id
retries_state
run_date_time
run_state
expandString-status
curl -X GET "https://api.callone.de/v1010/json///Callback/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/'

response_json = requests.get (url, data=api_parameters)

/Callback/ GET v1

https://api.callone.de/v1000/json///Callback/

NameValueTypeRequ.ValuesDescription
idNumber-
req_tokenNumber-
start_dateDate-
end_dateDate-
curl -X GET "https://api.callone.de/v1000/json///Callback/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Callback/?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Callback/'

response_json = requests.get (url, data=api_parameters)

/Callback/ POST v2

https://api.callone.de/v1010/json///Callback/

NameValueTypeRequ.ValuesDescription
callerStringYes
button_idNumber-
button_keyNumber-
routing_idNumber-
routing_ddiNumber-
routing_user_providedString-
routing_timeout_ringingNumber-
routing_ttsObject-
skill_group_idNumber-
contact_nameString-
contact_emailString-
check_ip_addrString-
check_list_idNumber-
run_delayNumber-
retries_maxNumber-
retries_delayNumber-
status_languageString-de
en
fr
pl
data1String-
data2String-
data3String-
data4String-
data5String-
data6String-
data7String-
data8String-
data9String-
data10String-
curl -X POST "https://api.callone.de/v1010/json///Callback/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/'

response_json = requests.post (url, data=api_parameters)

/Callback/ POST v1

https://api.callone.de/v1000/json///Callback/

NameValueTypeRequ.ValuesDescription
callerStringYes
idNumber-
keyNumber-
nameString-
emailString-
ip_addrString-
data1String-
data2String-
data3String-
data4String-
data5String-
data6String-
data7String-
data8String-
data9String-
data10String-
delayNumber-
ddiNumber-
countNumber-
break_secNumber-
timeout_ringingNumber-
user_providedString-
languageString-de
en
fr
pl
blacklist_idNumber-
ttsObject-
curl -X POST "https://api.callone.de/v1000/json///Callback/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Callback/';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Callback/'

response_json = requests.post (url, data=api_parameters)

/Callback/ DELETE v1

https://api.callone.de/v1000/json///Callback/

NameValueTypeRequ.ValuesDescription
idNumberYes
curl -X DELETE "https://api.callone.de/v1000/json///Callback/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Callback/';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Callback/'

response_json = requests.delete (url, data=api_parameters)

/Callback/Buttons GET v2

https://api.callone.de/v1010/json///Callback/Buttons

curl -X GET "https://api.callone.de/v1010/json///Callback/Buttons"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/Buttons';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/Buttons'

response_json = requests.get (url)

/Callback/Buttons/BUTTON_ID GET v2

https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID

NameValueTypeRequ.ValuesDescription
BUTTON_IDURLYes
curl -X GET "https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID'

response_json = requests.get (url)

/Callback/Buttons/BUTTON_ID/DTMF GET v2

https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF

NameValueTypeRequ.ValuesDescription
BUTTON_IDURLYes
curl -X GET "https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF'

response_json = requests.get (url)

/Callback/Buttons/BUTTON_ID/DTMF POST v2

https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF

NameValueTypeRequ.ValuesDescription
BUTTON_IDURLYes
keysNumberYes
link_hrefStringYes
link_contentStringYes
curl -X POST "https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF'

response_json = requests.post (url, data=api_parameters)

/Callback/Buttons/BUTTON_ID/DTMF/COUNT GET v2

https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/COUNT

NameValueTypeRequ.ValuesDescription
BUTTON_IDURLYes
curl -X GET "https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/COUNT"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/COUNT'

response_json = requests.get (url)

/Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID GET v2

https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID

NameValueTypeRequ.ValuesDescription
BUTTON_IDURLYes
DTMF_IDURLYes
curl -X GET "https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID'

response_json = requests.get (url)

/Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID PUT v2

https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID

NameValueTypeRequ.ValuesDescription
BUTTON_IDURLYes
DTMF_IDURLYes
keysNumberYes
link_hrefStringYes
link_contentStringYes
curl -X PUT "https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID'

response_json = requests.put (url, data=api_parameters)

/Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID DELETE v2

https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID

NameValueTypeRequ.ValuesDescription
BUTTON_IDURLYes
DTMF_IDURLYes
curl -X DELETE "https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/DTMF/DTMF_ID'

response_json = requests.delete (url)

/Callback/Buttons/BUTTON_ID/Package GET v2

https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/Package

NameValueTypeRequ.ValuesDescription
BUTTON_IDURLYes
curl -X GET "https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/Package"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/Package';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/Buttons/BUTTON_ID/Package'

response_json = requests.get (url)

/Callback/Buttons/COUNT GET v2

https://api.callone.de/v1010/json///Callback/Buttons/COUNT

curl -X GET "https://api.callone.de/v1010/json///Callback/Buttons/COUNT"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/Buttons/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/Buttons/COUNT'

response_json = requests.get (url)

/Callback/COUNT GET v2

https://api.callone.de/v1010/json///Callback/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
filterString-cancellation
done_date_time
done_state
id
retries_state
run_date_time
run_state
curl -X GET "https://api.callone.de/v1010/json///Callback/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/COUNT'

response_json = requests.get (url, data=api_parameters)

/Callback/Check GET v2

https://api.callone.de/v1010/json///Callback/Check

NameValueTypeRequ.ValuesDescription
button_idNumber-
button_keyNumber-
callerString-
routing_ddiNumber-
check_ip_addrString-
check_list_idNumber-
run_delayNumber-
status_languageString-de
en
fr
pl
curl -X GET "https://api.callone.de/v1010/json///Callback/Check" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/Check?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/Check'

response_json = requests.get (url, data=api_parameters)

/Callback/Check GET v1

https://api.callone.de/v1000/json///Callback/Check

NameValueTypeRequ.ValuesDescription
idNumber-
keyNumber-
ddiNumber-
delayNumber-
ip_addrString-
callerString-
blacklist_idNumber-
languageString-de
en
fr
pl
curl -X GET "https://api.callone.de/v1000/json///Callback/Check" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Callback/Check?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Callback/Check'

response_json = requests.get (url, data=api_parameters)

/Callback/Codes GET v2

https://api.callone.de/v1010/json///Callback/Codes

curl -X GET "https://api.callone.de/v1010/json///Callback/Codes"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/Codes';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/Codes'

response_json = requests.get (url)

/Callback/Codes GET v1

https://api.callone.de/v1000/json///Callback/Codes

curl -X GET "https://api.callone.de/v1000/json///Callback/Codes"
<?php
$url = 'https://api.callone.de/v1000/json///Callback/Codes';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Callback/Codes'

response_json = requests.get (url)

/Callback/ID GET v2

https://api.callone.de/v1010/json///Callback/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
expandString-status
curl -X GET "https://api.callone.de/v1010/json///Callback/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/ID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/ID'

response_json = requests.get (url, data=api_parameters)

/Callback/ID DELETE v2

https://api.callone.de/v1010/json///Callback/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1010/json///Callback/ID"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/ID'

response_json = requests.delete (url)

/Callback/ID/Status GET v2

https://api.callone.de/v1010/json///Callback/ID/Status

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1010/json///Callback/ID/Status"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/ID/Status';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/ID/Status'

response_json = requests.get (url)

/Callback/Reverse POST v2

https://api.callone.de/v1010/json///Callback/Reverse

NameValueTypeRequ.ValuesDescription
callerStringYes
routing_idNumber-
routing_ddiNumber-
routing_user_providedString-
routing_timeout_ringingNumber-
routing_ttsObject-
skill_group_idNumber-
contact_nameString-
contact_emailString-
check_ip_addrString-
check_list_idNumber-
run_delayNumber-
retries_maxNumber-
retries_delayNumber-
status_languageString-de
en
fr
pl
data1String-
data2String-
data3String-
data4String-
data5String-
data6String-
data7String-
data8String-
data9String-
data10String-
curl -X POST "https://api.callone.de/v1010/json///Callback/Reverse" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/Reverse';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/Reverse'

response_json = requests.post (url, data=api_parameters)

/Callback/Times GET v2

https://api.callone.de/v1010/json///Callback/Times

NameValueTypeRequ.ValuesDescription
filterString-date_time
id
skillgroup_id
waitgroup_id
waitingplaces_total
waitingplaces_used
sortString-date_time
id
skillgroup_id
waitgroup_id
waitingplaces_total
waitingplaces_used
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1010/json///Callback/Times" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/Times?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/Times'

response_json = requests.get (url, data=api_parameters)

/Callback/Times/COUNT GET v2

https://api.callone.de/v1010/json///Callback/Times/COUNT

NameValueTypeRequ.ValuesDescription
filterString-date_time
id
skillgroup_id
waitgroup_id
waitingplaces_total
waitingplaces_used
curl -X GET "https://api.callone.de/v1010/json///Callback/Times/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/Times/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/Times/COUNT'

response_json = requests.get (url, data=api_parameters)

/Callback/Times/TIMES_ID GET v2

https://api.callone.de/v1010/json///Callback/Times/TIMES_ID

NameValueTypeRequ.ValuesDescription
TIMES_IDURLYes
curl -X GET "https://api.callone.de/v1010/json///Callback/Times/TIMES_ID"
<?php
$url = 'https://api.callone.de/v1010/json///Callback/Times/TIMES_ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1010/json///Callback/Times/TIMES_ID'

response_json = requests.get (url)

/Callback/Times/TIMES_ID/Reserve POST v2

https://api.callone.de/v1010/json///Callback/Times/TIMES_ID/Reserve

NameValueTypeRequ.ValuesDescription
TIMES_IDURLYes
callerStringYes
curl -X POST "https://api.callone.de/v1010/json///Callback/Times/TIMES_ID/Reserve" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1010/json///Callback/Times/TIMES_ID/Reserve';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1010/json///Callback/Times/TIMES_ID/Reserve'

response_json = requests.post (url, data=api_parameters)
CDR

/CDR/ GET v1

https://api.callone.de/v1000/json///CDR/

NameValueTypeRequ.ValuesDescription
idNumber-
directionString-IN
OUT
start_dateDate-
start_timeTime-
end_dateDate-
end_timeTime-
serviceString-
successfullyString-false
true
filterString-costcenter_id
end_date_time
modul_id
routing_id
start_date_time
uuid
sortString-caller
date_time
ddi
id
service
expandString-acd.agents
acd.holds
acd.skillgroups.inbound
acd.skillgroups.outbound
callback
click2call
coding
references
routingpoints
sip.holds
limitNumber-
offsetNumber-
Inbound call from external number. First skill group agent didn't pick up the call, so after a ringing timeout the next agent was triggered.
{
  "version": {
    "used": "v1000",
    "expire": "none",
    "new_available": "v1000"
  },
  "response": {
    "count": 1,
    "data": [
      {
        "id": 123456789,                                            /* Main unique CDR ID (human friendly) */
        "uuid": "aaaaaaaa-1234-bbbb-5678-cccccccccccc",             /* Main unique CDR ID */
        "direction": "inbound",                                     /* Call direction */
        "caller": "004915112345XXX",                                /* Phone number transmitted by call-initiating party or VoIP endpoint number */
        "service": "06131-9504960",                                 /* Phone number dialed by call-initiating party, VoIP endpoint or agent ID  */
        "ddi": "007",                                               /* Direct dial in (DDI) of a destination number or "INT" for internal calls */
        "profil": "DE_VoIP",                                        /* Billing profile used for this service */
        "modul": {
          "id": 332
        },
        "duration_in": 60,                                          /* Call duration including waiting queue time */
        "duration_out": 8,                                          /* In-call time: Agent and destination were connected and talked */
        "wait_duration": 4,                                         /* Waiting queue time in last skill group, ringing time excluded */
        "successfully": true,                                       /* True, if call was successful; false, if call was not sucessful */
        "date_time": "22.05.2018 15:43:00",                         /* Call start date and time */
        "out": [                                                    /* The out part contains all called parties */ 
          {
            "id": 123456791,                                        /* Unique call part ID (human friendly) */
            "uuid": "cccccccc-1234-dddd-5678-eeeeeeeeeeee",         /* Unique call part ID */
            "destination": "0001000002",                            /* VoIP endpoint or phone number */
            "description": "Jane Doe[23456]",                       /* Description entered for agent or VoIP endpoint */
            "duration_ringing": 3,                                  /* Ringing duration */
            "duration": 8,                                          /* Talk time */
            "success": 1,                                           /* 1, if party picked up; 0, if party did not pick up */
            "hangup_cause": "normal_clearing",                      /* VoIP or PSTN release cause */
            "date_time": "22.05.2018 15:43:49"                      /* Start date and time for this section of the call */
          },
          {
            "id": 1234567890,                                       /* Unique call part ID (human friendly) */
            "uuid": "bbbbbbbb-1234-cccc-5678-dddddddddddd",         /* Unique call part ID */
            "destination": "0001000001",                            /* VoIP endpoint or phone number */
            "description": "John Doe[12345]",                       /* Description entered for agent or VoIP endpoint */
            "duration_ringing": 20,                                 /* Ringing duration */
            "duration": 0,                                          /* Talk time */
            "success": 0,                                           /* If party picked up value is 1, if did't pick up value is 0 */
            "hangup_cause": "no_answer",                            /* VoIP or PSTN release cause */
            "date_time": "22.05.2018 15:43:13"                      /* Start date and time for this section of the call */
          }
        ],
        "history": {
          "href": "/CDR/123456789/History"
        },
        "coding": {
          "count": 1,
          "data": [
            {
              "id": 123,
              "own_id": 567,
              "description": "Order"                                /* Selected Call Coding */
            }
          ]
        }
      }
    ]
  }
}
Outbound call to external number, initiated by Click to Call.
{
  "version": {
    "used": "v1000",
    "expire": "none",
    "new_available": "v1000"
  },
  "response": {
    "count": 1,
    "data": [
      {
        "id": 123456789,                                            /* Main unique CDR ID (human friendly) */
        "uuid": "aaaaaaaa-1234-bbbb-5678-cccccccccccc",             /* Main unique CDR ID */
        "direction": "outbound",                                    /* Call direction */
        "caller": "0001000001",                                     /* Phone number transmitted by call-initiating party or VoIP endpoint number */
        "service": "VoIP-0001000001",                               /* Phone number dialed by call-initiating party, VoIP endpoint or agent ID  */
        "ddi": null,                                                /* Direct dial in (DDI) of a destination number or "INT" for internal calls */
        "profil": "DE_VoIP",                                        /* Billing profile used for this service */
        "modul": {
          "id": 600
        },
        "duration_in": 22,                                          /* Duration from Agent picking up the call till hangup */
        "duration_out": 32,                                         /* Summarised Agent and destination duration */
        "wait_duration": 0,                                         /* Waiting queue time, ringing time excluded */
        "successfully": true,                                       /* True, if call was successful; false, if call was not sucessful */
        "date_time": "22.05.2018 16:22:18",                         /* Call start date and time */
        "out": [                                                    /* The out part contains all called parties */ 
          {
            "id": 123456791,                                        /* Unique call part ID (human friendly) */
            "uuid": "cccccccc-1234-dddd-5678-eeeeeeeeeeee",         /* Unique call part ID */
            "destination": "004915112345678",                       /* VoIP endpoint or phone number */
            "description": "",                                      /* Description entered for agent or VoIP endpoint */
            "duration_ringing": 4,                                  /* Ringing duration */
            "duration": 10,                                         /* Talk time */
            "success": true,                                        /* true, if party picked up; false, if party did not pick up */
            "hangup_cause": "normal_clearing",                      /* VoIP or PSTN release cause */
            "date_time": "22.05.2018 16:22:21"                      /* Start date and time for this section of the call */
          },
          {
            "id": 1234567890,                                       /* Unique call part ID (human friendly) */
            "uuid": "bbbbbbbb-1234-cccc-5678-dddddddddddd",         /* Unique call part ID */
            "destination": "0001000001",                            /* VoIP endpoint or phone number */
            "description": "Snom 370 of John Doe",                  /* Description entered for agent or VoIP endpoint */
            "duration_ringing": 2,                                  /* Ringing duration */
            "duration": 22,                                         /* Duration from Agent picking up the call till hangup */
            "success": true,                                        /* If party picked up value is true, if did't pick up value is false */
            "hangup_cause": "normal_clearing",                      /* VoIP or PSTN release cause */
            "date_time": "22.05.2018 16:22:19"                      /* Start date and time for this section of the call */
          }
        ],
        "history": {
          "href": "/CDR/123456789/History"
        },
        "coding": {
          "count": 0,
          "data": []
        }
      }
    ]
  }
}
curl -X GET "https://api.callone.de/v1000/json///CDR/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CDR/?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CDR/'

response_json = requests.get (url, data=api_parameters)

/CDR/COUNT GET v1

https://api.callone.de/v1000/json///CDR/COUNT

NameValueTypeRequ.ValuesDescription
idNumber-
directionString-IN
OUT
start_dateDate-
start_timeTime-
end_dateDate-
end_timeTime-
successfullyString-false
true
filterString-costcenter_id
end_date_time
modul_id
routing_id
start_date_time
uuid
curl -X GET "https://api.callone.de/v1000/json///CDR/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CDR/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CDR/COUNT'

response_json = requests.get (url, data=api_parameters)

/CDR/ID GET v1

https://api.callone.de/v1000/json///CDR/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
expandString-acd.agents
acd.holds
acd.skillgroups.inbound
acd.skillgroups.outbound
callback
click2call
coding
references
routingpoints
sip.holds
curl -X GET "https://api.callone.de/v1000/json///CDR/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CDR/ID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CDR/ID'

response_json = requests.get (url, data=api_parameters)

/CDR/ID/CallCoding POST v1

https://api.callone.de/v1000/json///CDR/ID/CallCoding

NameValueTypeRequ.ValuesDescription
IDURLYes
idNumberYes
resetString-false
true
curl -X POST "https://api.callone.de/v1000/json///CDR/ID/CallCoding" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CDR/ID/CallCoding';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CDR/ID/CallCoding'

response_json = requests.post (url, data=api_parameters)

/CDR/ID/CallCoding DELETE v1

https://api.callone.de/v1000/json///CDR/ID/CallCoding

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///CDR/ID/CallCoding"
<?php
$url = 'https://api.callone.de/v1000/json///CDR/ID/CallCoding';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///CDR/ID/CallCoding'

response_json = requests.delete (url)

/CDR/ID/History GET v1

https://api.callone.de/v1000/json///CDR/ID/History

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///CDR/ID/History"
<?php
$url = 'https://api.callone.de/v1000/json///CDR/ID/History';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///CDR/ID/History'

response_json = requests.get (url)
Click2Call

/Click2Call/ACD GET v1

https://api.callone.de/v1000/json///Click2Call/ACD

NameValueTypeRequ.ValuesDescription
agentStringYes
destinationStringYes
skill_groupNumber-
user_providedString-
auto_answerString-false
true
data1String-
data2String-
data3String-
data4String-
data5String-
data6String-
data7String-
data8String-
data9String-
data10String-
curl -X GET "https://api.callone.de/v1000/json///Click2Call/ACD" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Click2Call/ACD?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Click2Call/ACD'

response_json = requests.get (url, data=api_parameters)

/Click2Call/Direct GET v1

https://api.callone.de/v1000/json///Click2Call/Direct

NameValueTypeRequ.ValuesDescription
a_destinationStringYes
b_destinationStringYes
user_providedString-
statistik_nameString-
data1String-
data2String-
data3String-
data4String-
data5String-
data6String-
data7String-
data8String-
data9String-
data10String-
curl -X GET "https://api.callone.de/v1000/json///Click2Call/Direct" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Click2Call/Direct?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Click2Call/Direct'

response_json = requests.get (url, data=api_parameters)

/Click2Call/SIP GET v1

https://api.callone.de/v1000/json///Click2Call/SIP

NameValueTypeRequ.ValuesDescription
sipuserStringYes
destinationStringYes
user_providedString-
auto_answerString-false
true
data1String-
data2String-
data3String-
data4String-
data5String-
data6String-
data7String-
data8String-
data9String-
data10String-
curl -X GET "https://api.callone.de/v1000/json///Click2Call/SIP" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Click2Call/SIP?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Click2Call/SIP'

response_json = requests.get (url, data=api_parameters)
CTI

/CTI/ GET v1

https://api.callone.de/v1000/json///CTI/

curl -X GET "https://api.callone.de/v1000/json///CTI/"
<?php
$url = 'https://api.callone.de/v1000/json///CTI/';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///CTI/'

response_json = requests.get (url)

/CTI/CDR GET v1

https://api.callone.de/v1000/json///CTI/CDR

NameValueTypeRequ.ValuesDescription
start_dateDate-
start_timeTime-
end_dateDate-
end_timeTime-
filterString-cdr_id
direction
id
send
user_id
sortString-created
id
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///CTI/CDR" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/CDR?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/CDR'

response_json = requests.get (url, data=api_parameters)

/CTI/CDR/COUNT GET v1

https://api.callone.de/v1000/json///CTI/CDR/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
start_timeTime-
end_dateDate-
end_timeTime-
filterString-cdr_id
direction
id
send
user_id
curl -X GET "https://api.callone.de/v1000/json///CTI/CDR/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/CDR/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/CDR/COUNT'

response_json = requests.get (url, data=api_parameters)

/CTI/CDR/ID GET v1

https://api.callone.de/v1000/json///CTI/CDR/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///CTI/CDR/ID"
<?php
$url = 'https://api.callone.de/v1000/json///CTI/CDR/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///CTI/CDR/ID'

response_json = requests.get (url)

/CTI/Devices GET v1

https://api.callone.de/v1000/json///CTI/Devices

NameValueTypeRequ.ValuesDescription
filterString-id
type
expandString-sessions
users
curl -X GET "https://api.callone.de/v1000/json///CTI/Devices" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Devices?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Devices'

response_json = requests.get (url, data=api_parameters)

/CTI/Devices/COUNT GET v1

https://api.callone.de/v1000/json///CTI/Devices/COUNT

NameValueTypeRequ.ValuesDescription
filterString-id
type
curl -X GET "https://api.callone.de/v1000/json///CTI/Devices/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Devices/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Devices/COUNT'

response_json = requests.get (url, data=api_parameters)

/CTI/Devices/DID GET v1

https://api.callone.de/v1000/json///CTI/Devices/DID

NameValueTypeRequ.ValuesDescription
DIDURLYes
expandString-sessions
users
curl -X GET "https://api.callone.de/v1000/json///CTI/Devices/DID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Devices/DID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Devices/DID'

response_json = requests.get (url, data=api_parameters)

/CTI/Devices/DID PATCH v1

https://api.callone.de/v1000/json///CTI/Devices/DID

NameValueTypeRequ.ValuesDescription
DIDURLYes
nameString-
curl -X PATCH "https://api.callone.de/v1000/json///CTI/Devices/DID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Devices/DID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Devices/DID'

response_json = requests.patch (url, data=api_parameters)

/CTI/Devices/DID/Users GET v1

https://api.callone.de/v1000/json///CTI/Devices/DID/Users

NameValueTypeRequ.ValuesDescription
DIDURLYes
curl -X GET "https://api.callone.de/v1000/json///CTI/Devices/DID/Users"
<?php
$url = 'https://api.callone.de/v1000/json///CTI/Devices/DID/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///CTI/Devices/DID/Users'

response_json = requests.get (url)

/CTI/Devices/DID/Users/UID POST v1

https://api.callone.de/v1000/json///CTI/Devices/DID/Users/UID

NameValueTypeRequ.ValuesDescription
DIDURLYes
UIDURLYes
curl -X POST "https://api.callone.de/v1000/json///CTI/Devices/DID/Users/UID"
<?php
$url = 'https://api.callone.de/v1000/json///CTI/Devices/DID/Users/UID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///CTI/Devices/DID/Users/UID'

response_json = requests.post (url)

/CTI/Devices/DID/Users/UID DELETE v1

https://api.callone.de/v1000/json///CTI/Devices/DID/Users/UID

NameValueTypeRequ.ValuesDescription
DIDURLYes
UIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///CTI/Devices/DID/Users/UID"
<?php
$url = 'https://api.callone.de/v1000/json///CTI/Devices/DID/Users/UID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///CTI/Devices/DID/Users/UID'

response_json = requests.delete (url)

/CTI/Numbers GET v1

https://api.callone.de/v1000/json///CTI/Numbers

NameValueTypeRequ.ValuesDescription
filterString-id
expandString-user
curl -X GET "https://api.callone.de/v1000/json///CTI/Numbers" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Numbers?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Numbers'

response_json = requests.get (url, data=api_parameters)

/CTI/Numbers POST v1

https://api.callone.de/v1000/json///CTI/Numbers

NameValueTypeRequ.ValuesDescription
user_idNumberYes
numberStringYes
outgoingString-false
true
curl -X POST "https://api.callone.de/v1000/json///CTI/Numbers" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Numbers';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Numbers'

response_json = requests.post (url, data=api_parameters)

/CTI/Numbers/COUNT GET v1

https://api.callone.de/v1000/json///CTI/Numbers/COUNT

NameValueTypeRequ.ValuesDescription
filterString-id
curl -X GET "https://api.callone.de/v1000/json///CTI/Numbers/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Numbers/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Numbers/COUNT'

response_json = requests.get (url, data=api_parameters)

/CTI/Numbers/NID GET v1

https://api.callone.de/v1000/json///CTI/Numbers/NID

NameValueTypeRequ.ValuesDescription
NIDURLYes
expandString-user
curl -X GET "https://api.callone.de/v1000/json///CTI/Numbers/NID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Numbers/NID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Numbers/NID'

response_json = requests.get (url, data=api_parameters)

/CTI/Numbers/NID PATCH v1

https://api.callone.de/v1000/json///CTI/Numbers/NID

NameValueTypeRequ.ValuesDescription
NIDURLYes
numberString-
outgoingString-false
true
curl -X PATCH "https://api.callone.de/v1000/json///CTI/Numbers/NID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Numbers/NID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Numbers/NID'

response_json = requests.patch (url, data=api_parameters)

/CTI/Numbers/NID DELETE v1

https://api.callone.de/v1000/json///CTI/Numbers/NID

NameValueTypeRequ.ValuesDescription
NIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///CTI/Numbers/NID"
<?php
$url = 'https://api.callone.de/v1000/json///CTI/Numbers/NID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///CTI/Numbers/NID'

response_json = requests.delete (url)

/CTI/TYPE GET v1

https://api.callone.de/v1000/json///CTI/TYPE

NameValueTypeRequ.ValuesDescription
TYPEURLYes
curl -X GET "https://api.callone.de/v1000/json///CTI/TYPE"
<?php
$url = 'https://api.callone.de/v1000/json///CTI/TYPE';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///CTI/TYPE'

response_json = requests.get (url)

/CTI/Users GET v1

https://api.callone.de/v1000/json///CTI/Users

NameValueTypeRequ.ValuesDescription
filterString-id
type
expandString-numbers
sessions
curl -X GET "https://api.callone.de/v1000/json///CTI/Users" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Users?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Users'

response_json = requests.get (url, data=api_parameters)

/CTI/Users/COUNT GET v1

https://api.callone.de/v1000/json///CTI/Users/COUNT

NameValueTypeRequ.ValuesDescription
filterString-id
type
curl -X GET "https://api.callone.de/v1000/json///CTI/Users/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Users/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Users/COUNT'

response_json = requests.get (url, data=api_parameters)

/CTI/Users/UID GET v1

https://api.callone.de/v1000/json///CTI/Users/UID

NameValueTypeRequ.ValuesDescription
UIDURLYes
expandString-numbers
sessions
curl -X GET "https://api.callone.de/v1000/json///CTI/Users/UID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Users/UID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Users/UID'

response_json = requests.get (url, data=api_parameters)

/CTI/Users/UID PATCH v1

https://api.callone.de/v1000/json///CTI/Users/UID

NameValueTypeRequ.ValuesDescription
UIDURLYes
nameString-
emailString-
curl -X PATCH "https://api.callone.de/v1000/json///CTI/Users/UID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///CTI/Users/UID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///CTI/Users/UID'

response_json = requests.patch (url, data=api_parameters)

/CTI/Users/UID/Numbers GET v1

https://api.callone.de/v1000/json///CTI/Users/UID/Numbers

NameValueTypeRequ.ValuesDescription
UIDURLYes
curl -X GET "https://api.callone.de/v1000/json///CTI/Users/UID/Numbers"
<?php
$url = 'https://api.callone.de/v1000/json///CTI/Users/UID/Numbers';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///CTI/Users/UID/Numbers'

response_json = requests.get (url)
Customers

/Customers/ GET v1

https://api.callone.de/v1000/json///Customers/

NameValueTypeRequ.ValuesDescription
expandString-billing
curl -X GET "https://api.callone.de/v1000/json///Customers/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Customers/?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Customers/'

response_json = requests.get (url, data=api_parameters)

/Customers/Activate POST v1

https://api.callone.de/v1000/json///Customers/Activate

NameValueTypeRequ.ValuesDescription
product_cancel_idsObject-
curl -X POST "https://api.callone.de/v1000/json///Customers/Activate" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Customers/Activate';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Customers/Activate'

response_json = requests.post (url, data=api_parameters)

/Customers/DSGVO GET v1

https://api.callone.de/v1000/json///Customers/DSGVO

curl -X GET "https://api.callone.de/v1000/json///Customers/DSGVO"
<?php
$url = 'https://api.callone.de/v1000/json///Customers/DSGVO';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Customers/DSGVO'

response_json = requests.get (url)

/Customers/Theme GET v1

https://api.callone.de/v1000/json///Customers/Theme

curl -X GET "https://api.callone.de/v1000/json///Customers/Theme"
<?php
$url = 'https://api.callone.de/v1000/json///Customers/Theme';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Customers/Theme'

response_json = requests.get (url)
Fax

/Fax/ POST v1

https://api.callone.de/v1000/json///Fax/

NameValueTypeRequ.ValuesDescription
destinationStringYes
headerStringYes
sendernumberStringYes
fileStringYes
email_toString-
email_bccString-
countNumber-
break_secNumber-
languageString-de
en
costcenter_idNumber-
notify_urlString-
statistik_nameString-
curl -X POST "https://api.callone.de/v1000/json///Fax/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Fax/';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Fax/'

response_json = requests.post (url, data=api_parameters)
Files

/Files/Audio GET v1

https://api.callone.de/v1000/json///Files/Audio

NameValueTypeRequ.ValuesDescription
sortString-created
id
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Files/Audio" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Files/Audio?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Files/Audio'

response_json = requests.get (url, data=api_parameters)

/Files/Audio/COUNT GET v1

https://api.callone.de/v1000/json///Files/Audio/COUNT

curl -X GET "https://api.callone.de/v1000/json///Files/Audio/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Audio/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Audio/COUNT'

response_json = requests.get (url)

/Files/Audio/Default GET v1

https://api.callone.de/v1000/json///Files/Audio/Default

curl -X GET "https://api.callone.de/v1000/json///Files/Audio/Default"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Audio/Default';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Audio/Default'

response_json = requests.get (url)

/Files/Audio/Default/ID PATCH v1

https://api.callone.de/v1000/json///Files/Audio/Default/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
override_nameStringYes
curl -X PATCH "https://api.callone.de/v1000/json///Files/Audio/Default/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Files/Audio/Default/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Files/Audio/Default/ID'

response_json = requests.patch (url, data=api_parameters)

/Files/Audio/Default/ID/File GET v1

https://api.callone.de/v1000/json///Files/Audio/Default/ID/File

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Files/Audio/Default/ID/File"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Audio/Default/ID/File';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Audio/Default/ID/File'

response_json = requests.get (url)

/Files/Audio/ID GET v1

https://api.callone.de/v1000/json///Files/Audio/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
FIXME: Files_Audio_ID_GET_1000_File_Download.php
curl -X GET "https://api.callone.de/v1000/json///Files/Audio/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Audio/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Audio/ID'

response_json = requests.get (url)

/Files/Audio/ID DELETE v1

https://api.callone.de/v1000/json///Files/Audio/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Files/Audio/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Audio/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Audio/ID'

response_json = requests.delete (url)

/Files/Audio/ID/Usage GET v1

https://api.callone.de/v1000/json///Files/Audio/ID/Usage

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Files/Audio/ID/Usage"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Audio/ID/Usage';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Audio/ID/Usage'

response_json = requests.get (url)

/Files/Fax DELETE v1

https://api.callone.de/v1000/json///Files/Fax

curl -X DELETE "https://api.callone.de/v1000/json///Files/Fax"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Fax';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Fax'

response_json = requests.delete (url)

/Files/Fax/IN GET v1

https://api.callone.de/v1000/json///Files/Fax/IN

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
filterString-cdr_id
sortString-caller
created
ddi
id
service
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Files/Fax/IN" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Files/Fax/IN?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Files/Fax/IN'

response_json = requests.get (url, data=api_parameters)

/Files/Fax/IN/COUNT GET v1

https://api.callone.de/v1000/json///Files/Fax/IN/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
curl -X GET "https://api.callone.de/v1000/json///Files/Fax/IN/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Files/Fax/IN/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Files/Fax/IN/COUNT'

response_json = requests.get (url, data=api_parameters)

/Files/Fax/IN/ID GET v1

https://api.callone.de/v1000/json///Files/Fax/IN/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Files/Fax/IN/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Fax/IN/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Fax/IN/ID'

response_json = requests.get (url)

/Files/Fax/OUT GET v1

https://api.callone.de/v1000/json///Files/Fax/OUT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
sortString-caller
created
ddi
id
service
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Files/Fax/OUT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Files/Fax/OUT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Files/Fax/OUT'

response_json = requests.get (url, data=api_parameters)

/Files/Fax/OUT/COUNT GET v1

https://api.callone.de/v1000/json///Files/Fax/OUT/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
curl -X GET "https://api.callone.de/v1000/json///Files/Fax/OUT/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Files/Fax/OUT/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Files/Fax/OUT/COUNT'

response_json = requests.get (url, data=api_parameters)

/Files/Fax/OUT/ID GET v1

https://api.callone.de/v1000/json///Files/Fax/OUT/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Files/Fax/OUT/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Fax/OUT/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Fax/OUT/ID'

response_json = requests.get (url)

/Files/Mailbox GET v1

https://api.callone.de/v1000/json///Files/Mailbox

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
filterString-cdr_id
sortString-caller
created
ddi
id
service
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Files/Mailbox" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Files/Mailbox?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Files/Mailbox'

response_json = requests.get (url, data=api_parameters)

/Files/Mailbox/COUNT GET v1

https://api.callone.de/v1000/json///Files/Mailbox/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
curl -X GET "https://api.callone.de/v1000/json///Files/Mailbox/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Files/Mailbox/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Files/Mailbox/COUNT'

response_json = requests.get (url, data=api_parameters)

/Files/Mailbox/ID GET v1

https://api.callone.de/v1000/json///Files/Mailbox/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Files/Mailbox/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Mailbox/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Mailbox/ID'

response_json = requests.get (url)

/Files/Mailbox/ID DELETE v1

https://api.callone.de/v1000/json///Files/Mailbox/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Files/Mailbox/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Mailbox/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Mailbox/ID'

response_json = requests.delete (url)

/Files/Record GET v1

https://api.callone.de/v1000/json///Files/Record

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
filterString-cdr_id
uuid
sortString-caller
created
ddi
id
service
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Files/Record" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Files/Record?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Files/Record'

response_json = requests.get (url, data=api_parameters)

/Files/Record/COUNT GET v1

https://api.callone.de/v1000/json///Files/Record/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
curl -X GET "https://api.callone.de/v1000/json///Files/Record/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Files/Record/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Files/Record/COUNT'

response_json = requests.get (url, data=api_parameters)

/Files/Record/ID GET v1

https://api.callone.de/v1000/json///Files/Record/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Files/Record/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Record/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Record/ID'

response_json = requests.get (url)

/Files/Record/ID DELETE v1

https://api.callone.de/v1000/json///Files/Record/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Files/Record/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Files/Record/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Files/Record/ID'

response_json = requests.delete (url)
Global

/Global/Check/Address GET v1

https://api.callone.de/v1000/json///Global/Check/Address

NameValueTypeRequ.ValuesDescription
streetStringYes
zipcodeNumberYes
cityStringYes
countryString-
curl -X GET "https://api.callone.de/v1000/json///Global/Check/Address" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Global/Check/Address?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Global/Check/Address'

response_json = requests.get (url, data=api_parameters)

/Global/Check/AreaCode GET v1

https://api.callone.de/v1000/json///Global/Check/AreaCode

NameValueTypeRequ.ValuesDescription
latitudeStringYes
longitudeStringYes
curl -X GET "https://api.callone.de/v1000/json///Global/Check/AreaCode" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Global/Check/AreaCode?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Global/Check/AreaCode'

response_json = requests.get (url, data=api_parameters)

/Global/Check/Holiday GET v1

https://api.callone.de/v1000/json///Global/Check/Holiday

NameValueTypeRequ.ValuesDescription
list_idNumberYes
dateDateYes
curl -X GET "https://api.callone.de/v1000/json///Global/Check/Holiday" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Global/Check/Holiday?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Global/Check/Holiday'

response_json = requests.get (url, data=api_parameters)

/Global/Countrys GET v1

https://api.callone.de/v1000/json///Global/Countrys

curl -X GET "https://api.callone.de/v1000/json///Global/Countrys"
<?php
$url = 'https://api.callone.de/v1000/json///Global/Countrys';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Global/Countrys'

response_json = requests.get (url)

/Global/Modules GET v1

https://api.callone.de/v1000/json///Global/Modules

curl -X GET "https://api.callone.de/v1000/json///Global/Modules"
<?php
$url = 'https://api.callone.de/v1000/json///Global/Modules';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Global/Modules'

response_json = requests.get (url)

/Global/ReleaseNotes GET v1

https://api.callone.de/v1000/json///Global/ReleaseNotes

NameValueTypeRequ.ValuesDescription
versionString-
yearString-
sortString-created
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Global/ReleaseNotes" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Global/ReleaseNotes?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Global/ReleaseNotes'

response_json = requests.get (url, data=api_parameters)

/Global/ReleaseNotes/Dates GET v1

https://api.callone.de/v1000/json///Global/ReleaseNotes/Dates

NameValueTypeRequ.ValuesDescription
versionString-
yearString-
sortString-created
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Global/ReleaseNotes/Dates" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Global/ReleaseNotes/Dates?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Global/ReleaseNotes/Dates'

response_json = requests.get (url, data=api_parameters)

/Global/ReleaseNotes/Years GET v1

https://api.callone.de/v1000/json///Global/ReleaseNotes/Years

NameValueTypeRequ.ValuesDescription
versionString-
sortString-created
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Global/ReleaseNotes/Years" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Global/ReleaseNotes/Years?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Global/ReleaseNotes/Years'

response_json = requests.get (url, data=api_parameters)

/Global/Services GET v1

https://api.callone.de/v1000/json///Global/Services

curl -X GET "https://api.callone.de/v1000/json///Global/Services"
<?php
$url = 'https://api.callone.de/v1000/json///Global/Services';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Global/Services'

response_json = requests.get (url)

/Global/TermsOfUse GET v1

https://api.callone.de/v1000/json///Global/TermsOfUse

NameValueTypeRequ.ValuesDescription
filterString-id
curl -X GET "https://api.callone.de/v1000/json///Global/TermsOfUse" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Global/TermsOfUse?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Global/TermsOfUse'

response_json = requests.get (url, data=api_parameters)

/Global/TermsOfUse/Agree POST v1

https://api.callone.de/v1000/json///Global/TermsOfUse/Agree

NameValueTypeRequ.ValuesDescription
idsObjectYes
IagreeStringYesfalse
true
curl -X POST "https://api.callone.de/v1000/json///Global/TermsOfUse/Agree" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Global/TermsOfUse/Agree';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Global/TermsOfUse/Agree'

response_json = requests.post (url, data=api_parameters)

/Global/TermsOfUse/COUNT GET v1

https://api.callone.de/v1000/json///Global/TermsOfUse/COUNT

NameValueTypeRequ.ValuesDescription
filterString-id
curl -X GET "https://api.callone.de/v1000/json///Global/TermsOfUse/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Global/TermsOfUse/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Global/TermsOfUse/COUNT'

response_json = requests.get (url, data=api_parameters)

/Global/TermsOfUse/ID GET v1

https://api.callone.de/v1000/json///Global/TermsOfUse/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Global/TermsOfUse/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Global/TermsOfUse/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Global/TermsOfUse/ID'

response_json = requests.get (url)

/Global/TermsOfUse/ID/Check GET v1

https://api.callone.de/v1000/json///Global/TermsOfUse/ID/Check

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Global/TermsOfUse/ID/Check"
<?php
$url = 'https://api.callone.de/v1000/json///Global/TermsOfUse/ID/Check';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Global/TermsOfUse/ID/Check'

response_json = requests.get (url)
Integrations

/Integrations/ GET v1

https://api.callone.de/v1000/json///Integrations/

NameValueTypeRequ.ValuesDescription
filterString-name
expandString-statistics
curl -X GET "https://api.callone.de/v1000/json///Integrations/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/'

response_json = requests.get (url, data=api_parameters)

/Integrations/AI/Search POST v1

https://api.callone.de/v1000/json///Integrations/AI/Search

curl -X POST "https://api.callone.de/v1000/json///Integrations/AI/Search"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search'

response_json = requests.post (url)

/Integrations/AI/Search DELETE v1

https://api.callone.de/v1000/json///Integrations/AI/Search

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/AI/Search"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search'

response_json = requests.delete (url)

/Integrations/AI/Search/Profiles GET v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles

curl -X GET "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles'

response_json = requests.get (url)

/Integrations/AI/Search/Profiles POST v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles

NameValueTypeRequ.ValuesDescription
nameStringYes
descriptionString-
curl -X POST "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles'

response_json = requests.post (url, data=api_parameters)

/Integrations/AI/Search/Profiles/COUNT GET v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/COUNT

curl -X GET "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/COUNT'

response_json = requests.get (url)

/Integrations/AI/Search/Profiles/PID GET v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID

NameValueTypeRequ.ValuesDescription
PIDURLYes
curl -X GET "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID'

response_json = requests.get (url)

/Integrations/AI/Search/Profiles/PID DELETE v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID

NameValueTypeRequ.ValuesDescription
PIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID'

response_json = requests.delete (url)

/Integrations/AI/Search/Profiles/PID/Documents GET v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents

NameValueTypeRequ.ValuesDescription
PIDURLYes
curl -X GET "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents'

response_json = requests.get (url)

/Integrations/AI/Search/Profiles/PID/Documents POST v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents

NameValueTypeRequ.ValuesDescription
PIDURLYes
titleStringYes
textStringYes
categoryStringYes
idString-
keywordsObject-
curl -X POST "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents'

response_json = requests.post (url, data=api_parameters)

/Integrations/AI/Search/Profiles/PID/Documents/DID DELETE v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents/DID

NameValueTypeRequ.ValuesDescription
PIDURLYes
DIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents/DID"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents/DID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Documents/DID'

response_json = requests.delete (url)

/Integrations/AI/Search/Profiles/PID/Import/Files POST v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Files

NameValueTypeRequ.ValuesDescription
PIDURLYes
filesStringYes
separatorString-,
;
resetString-false
true
curl -X POST "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Files" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Files';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Files'

response_json = requests.post (url, data=api_parameters)

/Integrations/AI/Search/Profiles/PID/Import/Url POST v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Url

NameValueTypeRequ.ValuesDescription
PIDURLYes
urlStringYes
separatorString-,
;
resetString-false
true
intervalString-
curl -X POST "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Url" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Url';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Url'

response_json = requests.post (url, data=api_parameters)

/Integrations/AI/Search/Profiles/PID/Import/Website POST v1

https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Website

NameValueTypeRequ.ValuesDescription
PIDURLYes
urlStringYes
resetString-false
true
curl -X POST "https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Website" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Website';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/AI/Search/Profiles/PID/Import/Website'

response_json = requests.post (url, data=api_parameters)

/Integrations/AI/Services POST v1

https://api.callone.de/v1000/json///Integrations/AI/Services

NameValueTypeRequ.ValuesDescription
locationStringYeseu
us
curl -X POST "https://api.callone.de/v1000/json///Integrations/AI/Services" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/AI/Services';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/AI/Services'

response_json = requests.post (url, data=api_parameters)

/Integrations/AI/Services PATCH v1

https://api.callone.de/v1000/json///Integrations/AI/Services

NameValueTypeRequ.ValuesDescription
locationStringYeseu
us
curl -X PATCH "https://api.callone.de/v1000/json///Integrations/AI/Services" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/AI/Services';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/AI/Services'

response_json = requests.patch (url, data=api_parameters)

/Integrations/AI/Services DELETE v1

https://api.callone.de/v1000/json///Integrations/AI/Services

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/AI/Services"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/AI/Services';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/AI/Services'

response_json = requests.delete (url)

/Integrations/Amazon/TTS POST v1

https://api.callone.de/v1000/json///Integrations/Amazon/TTS

curl -X POST "https://api.callone.de/v1000/json///Integrations/Amazon/TTS"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Amazon/TTS';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Amazon/TTS'

response_json = requests.post (url)

/Integrations/Amazon/TTS DELETE v1

https://api.callone.de/v1000/json///Integrations/Amazon/TTS

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Amazon/TTS"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Amazon/TTS';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Amazon/TTS'

response_json = requests.delete (url)

/Integrations/CallConnectAPI POST v1

https://api.callone.de/v1000/json///Integrations/CallConnectAPI

NameValueTypeRequ.ValuesDescription
uriStringYes
formatString-default
json
forkString-false
true
eventsString-all
ringing
event_heartbeat_intervalNumber-
curl -X POST "https://api.callone.de/v1000/json///Integrations/CallConnectAPI" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/CallConnectAPI';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/CallConnectAPI'

response_json = requests.post (url, data=api_parameters)

/Integrations/CallConnectAPI DELETE v1

https://api.callone.de/v1000/json///Integrations/CallConnectAPI

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/CallConnectAPI"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/CallConnectAPI';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/CallConnectAPI'

response_json = requests.delete (url)

/Integrations/CallConnectAPI/Outbound POST v1

https://api.callone.de/v1000/json///Integrations/CallConnectAPI/Outbound

NameValueTypeRequ.ValuesDescription
uriStringYes
formatString-default
json
forkString-false
true
eventsString-all
ringing
event_heartbeat_intervalNumber-
curl -X POST "https://api.callone.de/v1000/json///Integrations/CallConnectAPI/Outbound" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/CallConnectAPI/Outbound';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/CallConnectAPI/Outbound'

response_json = requests.post (url, data=api_parameters)

/Integrations/CallConnectAPI/Outbound DELETE v1

https://api.callone.de/v1000/json///Integrations/CallConnectAPI/Outbound

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/CallConnectAPI/Outbound"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/CallConnectAPI/Outbound';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/CallConnectAPI/Outbound'

response_json = requests.delete (url)

/Integrations/Clockodo POST v1

https://api.callone.de/v1000/json///Integrations/Clockodo

NameValueTypeRequ.ValuesDescription
usernameStringYes
passwordStringYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/Clockodo" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Clockodo';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Clockodo'

response_json = requests.post (url, data=api_parameters)

/Integrations/Clockodo DELETE v1

https://api.callone.de/v1000/json///Integrations/Clockodo

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Clockodo"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Clockodo';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Clockodo'

response_json = requests.delete (url)

/Integrations/Clockodo/Status GET v1

https://api.callone.de/v1000/json///Integrations/Clockodo/Status

curl -X GET "https://api.callone.de/v1000/json///Integrations/Clockodo/Status"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Clockodo/Status';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Clockodo/Status'

response_json = requests.get (url)

/Integrations/Clockodo/Users GET v1

https://api.callone.de/v1000/json///Integrations/Clockodo/Users

curl -X GET "https://api.callone.de/v1000/json///Integrations/Clockodo/Users"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Clockodo/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Clockodo/Users'

response_json = requests.get (url)

/Integrations/Crewmeister POST v1

https://api.callone.de/v1000/json///Integrations/Crewmeister

curl -X POST "https://api.callone.de/v1000/json///Integrations/Crewmeister"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Crewmeister';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Crewmeister'

response_json = requests.post (url)

/Integrations/Crewmeister DELETE v1

https://api.callone.de/v1000/json///Integrations/Crewmeister

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Crewmeister"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Crewmeister';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Crewmeister'

response_json = requests.delete (url)

/Integrations/Development POST v1

https://api.callone.de/v1000/json///Integrations/Development

curl -X POST "https://api.callone.de/v1000/json///Integrations/Development"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Development';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Development'

response_json = requests.post (url)

/Integrations/Development DELETE v1

https://api.callone.de/v1000/json///Integrations/Development

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Development"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Development';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Development'

response_json = requests.delete (url)

/Integrations/Google/ASR POST v1

https://api.callone.de/v1000/json///Integrations/Google/ASR

curl -X POST "https://api.callone.de/v1000/json///Integrations/Google/ASR"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Google/ASR';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Google/ASR'

response_json = requests.post (url)

/Integrations/Google/ASR DELETE v1

https://api.callone.de/v1000/json///Integrations/Google/ASR

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Google/ASR"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Google/ASR';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Google/ASR'

response_json = requests.delete (url)

/Integrations/Microsoft/ASR POST v1

https://api.callone.de/v1000/json///Integrations/Microsoft/ASR

curl -X POST "https://api.callone.de/v1000/json///Integrations/Microsoft/ASR"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/ASR';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/ASR'

response_json = requests.post (url)

/Integrations/Microsoft/ASR DELETE v1

https://api.callone.de/v1000/json///Integrations/Microsoft/ASR

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Microsoft/ASR"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/ASR';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/ASR'

response_json = requests.delete (url)

/Integrations/Microsoft/Outlook GET v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook

NameValueTypeRequ.ValuesDescription
expandString-
curl -X GET "https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook'

response_json = requests.get (url, data=api_parameters)

/Integrations/Microsoft/Outlook POST v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook

NameValueTypeRequ.ValuesDescription
redirect_uriStringYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook'

response_json = requests.post (url, data=api_parameters)

/Integrations/Microsoft/Outlook DELETE v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook

NameValueTypeRequ.ValuesDescription
resetString-false
true
curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook'

response_json = requests.delete (url, data=api_parameters)

/Integrations/Microsoft/Outlook/Contacts GET v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts

curl -X GET "https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts'

response_json = requests.get (url)

/Integrations/Microsoft/Outlook/Contacts PATCH v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts

NameValueTypeRequ.ValuesDescription
foldersString-
intervalString-auto
manual
once
readonlyString-false
true
curl -X PATCH "https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts'

response_json = requests.patch (url, data=api_parameters)

/Integrations/Microsoft/Outlook/Contacts/Action/ACTION GET v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts/Action/ACTION

NameValueTypeRequ.ValuesDescription
ACTIONURLYes
curl -X GET "https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts/Action/ACTION"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts/Action/ACTION';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts/Action/ACTION'

response_json = requests.get (url)

/Integrations/Microsoft/Outlook/Contacts/Folders GET v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts/Folders

curl -X GET "https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts/Folders"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts/Folders';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Outlook/Contacts/Folders'

response_json = requests.get (url)

/Integrations/Microsoft/Presence POST v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Presence

NameValueTypeRequ.ValuesDescription
redirect_uriStringYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/Microsoft/Presence" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence'

response_json = requests.post (url, data=api_parameters)

/Integrations/Microsoft/Presence PATCH v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Presence

NameValueTypeRequ.ValuesDescription
directionString-both
teams
curl -X PATCH "https://api.callone.de/v1000/json///Integrations/Microsoft/Presence" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence'

response_json = requests.patch (url, data=api_parameters)

/Integrations/Microsoft/Presence DELETE v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Presence

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Microsoft/Presence"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence'

response_json = requests.delete (url)

/Integrations/Microsoft/Presence/Activities GET v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Activities

curl -X GET "https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Activities"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Activities';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Activities'

response_json = requests.get (url)

/Integrations/Microsoft/Presence/ActivitiesToStatus POST v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/ActivitiesToStatus

NameValueTypeRequ.ValuesDescription
activityStringYesAvailable
Away
BeRightBack
Busy
DoNotDisturb
InACall
InAConferenceCall
InAMeeting
Inactive
OffWork
Offline
OutOfOffice
Presenting
status_idStringYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/ActivitiesToStatus" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/ActivitiesToStatus';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/ActivitiesToStatus'

response_json = requests.post (url, data=api_parameters)

/Integrations/Microsoft/Presence/Users GET v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users

curl -X GET "https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users'

response_json = requests.get (url)

/Integrations/Microsoft/Presence/Users POST v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users

NameValueTypeRequ.ValuesDescription
idNumberYes
agent_idNumberYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users'

response_json = requests.post (url, data=api_parameters)

/Integrations/Microsoft/Presence/Users/ID DELETE v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users/ID'

response_json = requests.delete (url)

/Integrations/Microsoft/Presence/Users/ID/setPresence POST v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users/ID/setPresence

NameValueTypeRequ.ValuesDescription
IDURLYes
availabilityStringYesAvailable
Away
BeRightBack
Busy
DoNotDisturb
Offline
activityStringYesAvailable
Away
BeRightBack
Busy
DoNotDisturb
InACall
InAConferenceCall
OffWork
curl -X POST "https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users/ID/setPresence" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users/ID/setPresence';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Presence/Users/ID/setPresence'

response_json = requests.post (url, data=api_parameters)

/Integrations/Microsoft/TTS POST v1

https://api.callone.de/v1000/json///Integrations/Microsoft/TTS

curl -X POST "https://api.callone.de/v1000/json///Integrations/Microsoft/TTS"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/TTS';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/TTS'

response_json = requests.post (url)

/Integrations/Microsoft/TTS DELETE v1

https://api.callone.de/v1000/json///Integrations/Microsoft/TTS

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Microsoft/TTS"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/TTS';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/TTS'

response_json = requests.delete (url)

/Integrations/Microsoft/Teams GET v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Teams

curl -X GET "https://api.callone.de/v1000/json///Integrations/Microsoft/Teams"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams'

response_json = requests.get (url)

/Integrations/Microsoft/Teams POST v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Teams

curl -X POST "https://api.callone.de/v1000/json///Integrations/Microsoft/Teams"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams'

response_json = requests.post (url)

/Integrations/Microsoft/Teams PATCH v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Teams

NameValueTypeRequ.ValuesDescription
hold_musicString-
code_countryString-
code_areaString-
curl -X PATCH "https://api.callone.de/v1000/json///Integrations/Microsoft/Teams" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams'

response_json = requests.patch (url, data=api_parameters)

/Integrations/Microsoft/Teams DELETE v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Teams

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Microsoft/Teams"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams'

response_json = requests.delete (url)

/Integrations/Microsoft/Teams/Users POST v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Users

NameValueTypeRequ.ValuesDescription
identifierStringYes
nameStringYes
emailString-
curl -X POST "https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Users" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Users'

response_json = requests.post (url, data=api_parameters)

/Integrations/Microsoft/Teams/Users/ID DELETE v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Users/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Users/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Users/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Users/ID'

response_json = requests.delete (url)

/Integrations/Microsoft/Teams/Verify POST v1

https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Verify

NameValueTypeRequ.ValuesDescription
codeNumberYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Verify" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Verify';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Microsoft/Teams/Verify'

response_json = requests.post (url, data=api_parameters)

/Integrations/PhoneBook POST v1

https://api.callone.de/v1000/json///Integrations/PhoneBook

curl -X POST "https://api.callone.de/v1000/json///Integrations/PhoneBook"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/PhoneBook';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/PhoneBook'

response_json = requests.post (url)

/Integrations/PhoneBook DELETE v1

https://api.callone.de/v1000/json///Integrations/PhoneBook

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/PhoneBook"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/PhoneBook';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/PhoneBook'

response_json = requests.delete (url)

/Integrations/PhoneBridge POST v1

https://api.callone.de/v1000/json///Integrations/PhoneBridge

curl -X POST "https://api.callone.de/v1000/json///Integrations/PhoneBridge"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/PhoneBridge';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/PhoneBridge'

response_json = requests.post (url)

/Integrations/PhoneBridge DELETE v1

https://api.callone.de/v1000/json///Integrations/PhoneBridge

NameValueTypeRequ.ValuesDescription
resetString-false
true
curl -X DELETE "https://api.callone.de/v1000/json///Integrations/PhoneBridge" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/PhoneBridge';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/PhoneBridge'

response_json = requests.delete (url, data=api_parameters)

/Integrations/Pipedrive/CRM POST v1

https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM

NameValueTypeRequ.ValuesDescription
redirect_uriStringYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM'

response_json = requests.post (url, data=api_parameters)

/Integrations/Pipedrive/CRM DELETE v1

https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM'

response_json = requests.delete (url)

/Integrations/Pipedrive/CRM/Users GET v1

https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM/Users

curl -X GET "https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM/Users"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Pipedrive/CRM/Users'

response_json = requests.get (url)

/Integrations/Salesforce/CRM POST v1

https://api.callone.de/v1000/json///Integrations/Salesforce/CRM

NameValueTypeRequ.ValuesDescription
redirect_uriStringYes
sandboxString-false
true
curl -X POST "https://api.callone.de/v1000/json///Integrations/Salesforce/CRM" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Salesforce/CRM';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Salesforce/CRM'

response_json = requests.post (url, data=api_parameters)

/Integrations/Salesforce/CRM DELETE v1

https://api.callone.de/v1000/json///Integrations/Salesforce/CRM

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Salesforce/CRM"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Salesforce/CRM';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Salesforce/CRM'

response_json = requests.delete (url)

/Integrations/Salesforce/CRM/CallCenterUsers POST v1

https://api.callone.de/v1000/json///Integrations/Salesforce/CRM/CallCenterUsers

curl -X POST "https://api.callone.de/v1000/json///Integrations/Salesforce/CRM/CallCenterUsers"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Salesforce/CRM/CallCenterUsers';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Salesforce/CRM/CallCenterUsers'

response_json = requests.post (url)

/Integrations/Salesforce/CRM/Users GET v1

https://api.callone.de/v1000/json///Integrations/Salesforce/CRM/Users

curl -X GET "https://api.callone.de/v1000/json///Integrations/Salesforce/CRM/Users"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Salesforce/CRM/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Salesforce/CRM/Users'

response_json = requests.get (url)

/Integrations/Softphones POST v1

https://api.callone.de/v1000/json///Integrations/Softphones

curl -X POST "https://api.callone.de/v1000/json///Integrations/Softphones"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Softphones';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Softphones'

response_json = requests.post (url)

/Integrations/Softphones DELETE v1

https://api.callone.de/v1000/json///Integrations/Softphones

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Softphones"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Softphones';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Softphones'

response_json = requests.delete (url)

/Integrations/TAPI POST v1

https://api.callone.de/v1000/json///Integrations/TAPI

curl -X POST "https://api.callone.de/v1000/json///Integrations/TAPI"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/TAPI';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/TAPI'

response_json = requests.post (url)

/Integrations/TAPI DELETE v1

https://api.callone.de/v1000/json///Integrations/TAPI

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/TAPI"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/TAPI';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/TAPI'

response_json = requests.delete (url)

/Integrations/TAPI/Devices POST v1

https://api.callone.de/v1000/json///Integrations/TAPI/Devices

NameValueTypeRequ.ValuesDescription
nameStringYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/TAPI/Devices" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/TAPI/Devices';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/TAPI/Devices'

response_json = requests.post (url, data=api_parameters)

/Integrations/TAPI/Devices/DID DELETE v1

https://api.callone.de/v1000/json///Integrations/TAPI/Devices/DID

NameValueTypeRequ.ValuesDescription
DIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Integrations/TAPI/Devices/DID"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/TAPI/Devices/DID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/TAPI/Devices/DID'

response_json = requests.delete (url)

/Integrations/TAPI/Users POST v1

https://api.callone.de/v1000/json///Integrations/TAPI/Users

NameValueTypeRequ.ValuesDescription
nameStringYes
emailString-
curl -X POST "https://api.callone.de/v1000/json///Integrations/TAPI/Users" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/TAPI/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/TAPI/Users'

response_json = requests.post (url, data=api_parameters)

/Integrations/TAPI/Users/UID DELETE v1

https://api.callone.de/v1000/json///Integrations/TAPI/Users/UID

NameValueTypeRequ.ValuesDescription
UIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Integrations/TAPI/Users/UID"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/TAPI/Users/UID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/TAPI/Users/UID'

response_json = requests.delete (url)

/Integrations/Voicebot GET v1

https://api.callone.de/v1000/json///Integrations/Voicebot

curl -X GET "https://api.callone.de/v1000/json///Integrations/Voicebot"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Voicebot';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Voicebot'

response_json = requests.get (url)

/Integrations/Voicebot POST v1

https://api.callone.de/v1000/json///Integrations/Voicebot

NameValueTypeRequ.ValuesDescription
support_accessString-
curl -X POST "https://api.callone.de/v1000/json///Integrations/Voicebot" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Voicebot';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Voicebot'

response_json = requests.post (url, data=api_parameters)

/Integrations/Voicebot PATCH v1

https://api.callone.de/v1000/json///Integrations/Voicebot

NameValueTypeRequ.ValuesDescription
support_accessString-
curl -X PATCH "https://api.callone.de/v1000/json///Integrations/Voicebot" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Voicebot';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Voicebot'

response_json = requests.patch (url, data=api_parameters)

/Integrations/Voicebot DELETE v1

https://api.callone.de/v1000/json///Integrations/Voicebot

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Voicebot"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Voicebot';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Voicebot'

response_json = requests.delete (url)

/Integrations/Vtiger POST v1

https://api.callone.de/v1000/json///Integrations/Vtiger

NameValueTypeRequ.ValuesDescription
urlStringYes
modulStringYesPBXManager
PhoneCalls
keyStringYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/Vtiger" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Vtiger';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Vtiger'

response_json = requests.post (url, data=api_parameters)

/Integrations/Vtiger DELETE v1

https://api.callone.de/v1000/json///Integrations/Vtiger

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Vtiger"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Vtiger';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Vtiger'

response_json = requests.delete (url)

/Integrations/Zammad POST v1

https://api.callone.de/v1000/json///Integrations/Zammad

curl -X POST "https://api.callone.de/v1000/json///Integrations/Zammad"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Zammad';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Zammad'

response_json = requests.post (url)

/Integrations/Zammad DELETE v1

https://api.callone.de/v1000/json///Integrations/Zammad

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Zammad"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Zammad';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Zammad'

response_json = requests.delete (url)

/Integrations/Zoho/API POST v1

https://api.callone.de/v1000/json///Integrations/Zoho/API

NameValueTypeRequ.ValuesDescription
redirect_uriStringYes
locationString-au
eu
in
us
curl -X POST "https://api.callone.de/v1000/json///Integrations/Zoho/API" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/API';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/API'

response_json = requests.post (url, data=api_parameters)

/Integrations/Zoho/One GET v1

https://api.callone.de/v1000/json///Integrations/Zoho/One

curl -X GET "https://api.callone.de/v1000/json///Integrations/Zoho/One"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One'

response_json = requests.get (url)

/Integrations/Zoho/One POST v1

https://api.callone.de/v1000/json///Integrations/Zoho/One

NameValueTypeRequ.ValuesDescription
redirect_uriStringYes
locationString-au
eu
in
us
curl -X POST "https://api.callone.de/v1000/json///Integrations/Zoho/One" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One'

response_json = requests.post (url, data=api_parameters)

/Integrations/Zoho/One DELETE v1

https://api.callone.de/v1000/json///Integrations/Zoho/One

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Zoho/One"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One'

response_json = requests.delete (url)

/Integrations/Zoho/One/Click2Call POST v1

https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2Call

NameValueTypeRequ.ValuesDescription
user_idNumberYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2Call" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2Call';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2Call'

response_json = requests.post (url, data=api_parameters)

/Integrations/Zoho/One/Click2Call DELETE v1

https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2Call

NameValueTypeRequ.ValuesDescription
user_idNumberYes
curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2Call" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2Call';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2Call'

response_json = requests.delete (url, data=api_parameters)

/Integrations/Zoho/One/Click2CallError POST v1

https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2CallError

NameValueTypeRequ.ValuesDescription
fromStringYes
toStringYes
hangup_causeStringYesinvalid
curl -X POST "https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2CallError" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2CallError';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One/Click2CallError'

response_json = requests.post (url, data=api_parameters)

/Integrations/Zoho/One/Users GET v1

https://api.callone.de/v1000/json///Integrations/Zoho/One/Users

curl -X GET "https://api.callone.de/v1000/json///Integrations/Zoho/One/Users"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/One/Users'

response_json = requests.get (url)

/Integrations/Zoho/SalesIQ POST v1

https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ

NameValueTypeRequ.ValuesDescription
redirect_uriStringYes
locationString-eu
us
curl -X POST "https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ'

response_json = requests.post (url, data=api_parameters)

/Integrations/Zoho/SalesIQ PATCH v1

https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ

NameValueTypeRequ.ValuesDescription
screennameStringYes
curl -X PATCH "https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ'

response_json = requests.patch (url, data=api_parameters)

/Integrations/Zoho/SalesIQ DELETE v1

https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ

curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ'

response_json = requests.delete (url)

/Integrations/Zoho/SalesIQ/Portals GET v1

https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Portals

curl -X GET "https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Portals"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Portals';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Portals'

response_json = requests.get (url)

/Integrations/Zoho/SalesIQ/Users GET v1

https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users

curl -X GET "https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users'

response_json = requests.get (url)

/Integrations/Zoho/SalesIQ/Users POST v1

https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users

NameValueTypeRequ.ValuesDescription
idNumberYes
agent_idNumberYes
curl -X POST "https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users'

response_json = requests.post (url, data=api_parameters)

/Integrations/Zoho/SalesIQ/Users/ID DELETE v1

https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Integrations/Zoho/SalesIQ/Users/ID'

response_json = requests.delete (url)
Lists

/Lists/Blacklists GET v1

https://api.callone.de/v1000/json///Lists/Blacklists

curl -X GET "https://api.callone.de/v1000/json///Lists/Blacklists"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Blacklists';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Blacklists'

response_json = requests.get (url)

/Lists/Blacklists POST v1

https://api.callone.de/v1000/json///Lists/Blacklists

NameValueTypeRequ.ValuesDescription
callerStringYes
descriptionStringYes
blockString-false
true
locked_upString-
curl -X POST "https://api.callone.de/v1000/json///Lists/Blacklists" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/Blacklists';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/Blacklists'

response_json = requests.post (url, data=api_parameters)

/Lists/Blacklists/COUNT GET v1

https://api.callone.de/v1000/json///Lists/Blacklists/COUNT

curl -X GET "https://api.callone.de/v1000/json///Lists/Blacklists/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Blacklists/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Blacklists/COUNT'

response_json = requests.get (url)

/Lists/Blacklists/ID GET v1

https://api.callone.de/v1000/json///Lists/Blacklists/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/Blacklists/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Blacklists/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Blacklists/ID'

response_json = requests.get (url)

/Lists/Blacklists/ID PATCH v1

https://api.callone.de/v1000/json///Lists/Blacklists/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
callerString-
descriptionString-
blockString-false
true
locked_upString-
curl -X PATCH "https://api.callone.de/v1000/json///Lists/Blacklists/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/Blacklists/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/Blacklists/ID'

response_json = requests.patch (url, data=api_parameters)

/Lists/Blacklists/ID DELETE v1

https://api.callone.de/v1000/json///Lists/Blacklists/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Lists/Blacklists/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Blacklists/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Blacklists/ID'

response_json = requests.delete (url)

/Lists/Blacklists/Outbound GET v1

https://api.callone.de/v1000/json///Lists/Blacklists/Outbound

curl -X GET "https://api.callone.de/v1000/json///Lists/Blacklists/Outbound"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound'

response_json = requests.get (url)

/Lists/Blacklists/Outbound POST v1

https://api.callone.de/v1000/json///Lists/Blacklists/Outbound

NameValueTypeRequ.ValuesDescription
destinationStringYes
descriptionStringYes
curl -X POST "https://api.callone.de/v1000/json///Lists/Blacklists/Outbound" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound'

response_json = requests.post (url, data=api_parameters)

/Lists/Blacklists/Outbound/COUNT GET v1

https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/COUNT

curl -X GET "https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/COUNT'

response_json = requests.get (url)

/Lists/Blacklists/Outbound/ID GET v1

https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID'

response_json = requests.get (url)

/Lists/Blacklists/Outbound/ID PATCH v1

https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
destinationString-
descriptionString-
curl -X PATCH "https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID'

response_json = requests.patch (url, data=api_parameters)

/Lists/Blacklists/Outbound/ID DELETE v1

https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Blacklists/Outbound/ID'

response_json = requests.delete (url)

/Lists/CallCodings GET v1

https://api.callone.de/v1000/json///Lists/CallCodings

NameValueTypeRequ.ValuesDescription
filterString-id
own_id
curl -X GET "https://api.callone.de/v1000/json///Lists/CallCodings" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/CallCodings?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/CallCodings'

response_json = requests.get (url, data=api_parameters)

/Lists/CallCodings POST v1

https://api.callone.de/v1000/json///Lists/CallCodings

NameValueTypeRequ.ValuesDescription
own_idNumberYes
descriptionStringYes
skill_groupsString-
curl -X POST "https://api.callone.de/v1000/json///Lists/CallCodings" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/CallCodings';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/CallCodings'

response_json = requests.post (url, data=api_parameters)

/Lists/CallCodings/COUNT GET v1

https://api.callone.de/v1000/json///Lists/CallCodings/COUNT

NameValueTypeRequ.ValuesDescription
filterString-id
own_id
curl -X GET "https://api.callone.de/v1000/json///Lists/CallCodings/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/CallCodings/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/CallCodings/COUNT'

response_json = requests.get (url, data=api_parameters)

/Lists/CallCodings/ID GET v1

https://api.callone.de/v1000/json///Lists/CallCodings/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/CallCodings/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/CallCodings/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/CallCodings/ID'

response_json = requests.get (url)

/Lists/CallCodings/ID PATCH v1

https://api.callone.de/v1000/json///Lists/CallCodings/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
own_idNumber-
descriptionString-
skill_groupsString-
curl -X PATCH "https://api.callone.de/v1000/json///Lists/CallCodings/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/CallCodings/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/CallCodings/ID'

response_json = requests.patch (url, data=api_parameters)

/Lists/CallCodings/ID DELETE v1

https://api.callone.de/v1000/json///Lists/CallCodings/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Lists/CallCodings/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/CallCodings/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/CallCodings/ID'

response_json = requests.delete (url)

/Lists/Callerlists GET v1

https://api.callone.de/v1000/json///Lists/Callerlists

curl -X GET "https://api.callone.de/v1000/json///Lists/Callerlists"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Callerlists';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Callerlists'

response_json = requests.get (url)

/Lists/Callerlists/COUNT GET v1

https://api.callone.de/v1000/json///Lists/Callerlists/COUNT

curl -X GET "https://api.callone.de/v1000/json///Lists/Callerlists/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/COUNT'

response_json = requests.get (url)

/Lists/Callerlists/ID GET v1

https://api.callone.de/v1000/json///Lists/Callerlists/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/Callerlists/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID'

response_json = requests.get (url)

/Lists/Callerlists/ID POST v1

https://api.callone.de/v1000/json///Lists/Callerlists/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
nameStringYes
descriptionStringYes
curl -X POST "https://api.callone.de/v1000/json///Lists/Callerlists/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID'

response_json = requests.post (url, data=api_parameters)

/Lists/Callerlists/ID PATCH v1

https://api.callone.de/v1000/json///Lists/Callerlists/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
nameString-
descriptionString-
curl -X PATCH "https://api.callone.de/v1000/json///Lists/Callerlists/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID'

response_json = requests.patch (url, data=api_parameters)

/Lists/Callerlists/ID DELETE v1

https://api.callone.de/v1000/json///Lists/Callerlists/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Lists/Callerlists/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID'

response_json = requests.delete (url)

/Lists/Callerlists/ID/Items GET v1

https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items'

response_json = requests.get (url)

/Lists/Callerlists/ID/Items POST v1

https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items

NameValueTypeRequ.ValuesDescription
IDURLYes
callerStringYes
descriptionStringYes
blockString-false
true
own_idString-
locked_upString-
curl -X POST "https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items'

response_json = requests.post (url, data=api_parameters)

/Lists/Callerlists/ID/Items/COUNT GET v1

https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/COUNT

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/COUNT'

response_json = requests.get (url)

/Lists/Callerlists/ID/Items/IID GET v1

https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID

NameValueTypeRequ.ValuesDescription
IDURLYes
IIDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID'

response_json = requests.get (url)

/Lists/Callerlists/ID/Items/IID PATCH v1

https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID

NameValueTypeRequ.ValuesDescription
IDURLYes
IIDURLYes
callerString-
descriptionString-
blockString-false
true
own_idString-
locked_upString-
curl -X PATCH "https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID'

response_json = requests.patch (url, data=api_parameters)

/Lists/Callerlists/ID/Items/IID DELETE v1

https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID

NameValueTypeRequ.ValuesDescription
IDURLYes
IIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Callerlists/ID/Items/IID'

response_json = requests.delete (url)

/Lists/CostCenters GET v1

https://api.callone.de/v1000/json///Lists/CostCenters

curl -X GET "https://api.callone.de/v1000/json///Lists/CostCenters"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/CostCenters';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/CostCenters'

response_json = requests.get (url)

/Lists/CostCenters POST v1

https://api.callone.de/v1000/json///Lists/CostCenters

NameValueTypeRequ.ValuesDescription
own_idNumberYes
descriptionStringYes
curl -X POST "https://api.callone.de/v1000/json///Lists/CostCenters" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Lists/CostCenters';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Lists/CostCenters'

response_json = requests.post (url, data=api_parameters)

/Lists/CostCenters/COUNT GET v1

https://api.callone.de/v1000/json///Lists/CostCenters/COUNT

curl -X GET "https://api.callone.de/v1000/json///Lists/CostCenters/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/CostCenters/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/CostCenters/COUNT'

response_json = requests.get (url)

/Lists/CostCenters/ID GET v1

https://api.callone.de/v1000/json///Lists/CostCenters/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/CostCenters/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/CostCenters/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/CostCenters/ID'

response_json = requests.get (url)

/Lists/Holidays GET v1

https://api.callone.de/v1000/json///Lists/Holidays

curl -X GET "https://api.callone.de/v1000/json///Lists/Holidays"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Holidays';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Holidays'

response_json = requests.get (url)

/Lists/Holidays/COUNT GET v1

https://api.callone.de/v1000/json///Lists/Holidays/COUNT

curl -X GET "https://api.callone.de/v1000/json///Lists/Holidays/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Holidays/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Holidays/COUNT'

response_json = requests.get (url)

/Lists/Holidays/ID GET v1

https://api.callone.de/v1000/json///Lists/Holidays/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/Holidays/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Holidays/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Holidays/ID'

response_json = requests.get (url)

/Lists/Holidays/ID/Items GET v1

https://api.callone.de/v1000/json///Lists/Holidays/ID/Items

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/Holidays/ID/Items"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Holidays/ID/Items';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Holidays/ID/Items'

response_json = requests.get (url)

/Lists/Holidays/ID/Items/COUNT GET v1

https://api.callone.de/v1000/json///Lists/Holidays/ID/Items/COUNT

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/Holidays/ID/Items/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Holidays/ID/Items/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Holidays/ID/Items/COUNT'

response_json = requests.get (url)

/Lists/Holidays/ID/Items/IID GET v1

https://api.callone.de/v1000/json///Lists/Holidays/ID/Items/IID

NameValueTypeRequ.ValuesDescription
IDURLYes
IIDURLYes
curl -X GET "https://api.callone.de/v1000/json///Lists/Holidays/ID/Items/IID"
<?php
$url = 'https://api.callone.de/v1000/json///Lists/Holidays/ID/Items/IID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Lists/Holidays/ID/Items/IID'

response_json = requests.get (url)
Live

/Live/ACD GET v1

https://api.callone.de/v1000/json///Live/ACD

curl -X GET "https://api.callone.de/v1000/json///Live/ACD"
<?php
$url = 'https://api.callone.de/v1000/json///Live/ACD';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Live/ACD'

response_json = requests.get (url)

/Live/ACD/Servicelevel GET v1

https://api.callone.de/v1000/json///Live/ACD/Servicelevel

NameValueTypeRequ.ValuesDescription
timespanString-15
24H
30
45
60
TODAY
YESTERDAY
curl -X GET "https://api.callone.de/v1000/json///Live/ACD/Servicelevel" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Live/ACD/Servicelevel?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Live/ACD/Servicelevel'

response_json = requests.get (url, data=api_parameters)

/Live/Action/UUID/Kick GET v1

https://api.callone.de/v1000/json///Live/Action/UUID/Kick

NameValueTypeRequ.ValuesDescription
UUIDURLYes
curl -X GET "https://api.callone.de/v1000/json///Live/Action/UUID/Kick"
<?php
$url = 'https://api.callone.de/v1000/json///Live/Action/UUID/Kick';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Live/Action/UUID/Kick'

response_json = requests.get (url)

/Live/Action/UUID/Record/STATE GET v1

https://api.callone.de/v1000/json///Live/Action/UUID/Record/STATE

NameValueTypeRequ.ValuesDescription
UUIDURLYes
STATEURLYes
curl -X GET "https://api.callone.de/v1000/json///Live/Action/UUID/Record/STATE"
<?php
$url = 'https://api.callone.de/v1000/json///Live/Action/UUID/Record/STATE';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Live/Action/UUID/Record/STATE'

response_json = requests.get (url)

/Live/Action/UUID/Stream/STATE GET v1

https://api.callone.de/v1000/json///Live/Action/UUID/Stream/STATE

NameValueTypeRequ.ValuesDescription
UUIDURLYes
STATEURLYes
curl -X GET "https://api.callone.de/v1000/json///Live/Action/UUID/Stream/STATE"
<?php
$url = 'https://api.callone.de/v1000/json///Live/Action/UUID/Stream/STATE';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Live/Action/UUID/Stream/STATE'

response_json = requests.get (url)

/Live/Action/UUID/Transfer GET v1

https://api.callone.de/v1000/json///Live/Action/UUID/Transfer

NameValueTypeRequ.ValuesDescription
UUIDURLYes
routing_idNumber-
destinationString-
curl -X GET "https://api.callone.de/v1000/json///Live/Action/UUID/Transfer" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Live/Action/UUID/Transfer?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Live/Action/UUID/Transfer'

response_json = requests.get (url, data=api_parameters)

/Live/Calls GET v1

https://api.callone.de/v1000/json///Live/Calls

NameValueTypeRequ.ValuesDescription
groupString-service
serviceString-
sortString-created
ddi
destination
duration
id
service
status_id
expandString-references
curl -X GET "https://api.callone.de/v1000/json///Live/Calls" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Live/Calls?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Live/Calls'

response_json = requests.get (url, data=api_parameters)

/Live/Calls/COUNT GET v1

https://api.callone.de/v1000/json///Live/Calls/COUNT

NameValueTypeRequ.ValuesDescription
serviceString-
curl -X GET "https://api.callone.de/v1000/json///Live/Calls/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Live/Calls/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Live/Calls/COUNT'

response_json = requests.get (url, data=api_parameters)

/Live/EVN GET v1

https://api.callone.de/v1000/json///Live/EVN

NameValueTypeRequ.ValuesDescription
sortString-created
service
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Live/EVN" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Live/EVN?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Live/EVN'

response_json = requests.get (url, data=api_parameters)

/Live/Reachability GET v1

https://api.callone.de/v1000/json///Live/Reachability

NameValueTypeRequ.ValuesDescription
timespanString-15
24H
30
45
60
TODAY
YESTERDAY
directionString-IN
OUT
curl -X GET "https://api.callone.de/v1000/json///Live/Reachability" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Live/Reachability?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Live/Reachability'

response_json = requests.get (url, data=api_parameters)

/Live/SIP GET v1

https://api.callone.de/v1000/json///Live/SIP

curl -X GET "https://api.callone.de/v1000/json///Live/SIP"
<?php
$url = 'https://api.callone.de/v1000/json///Live/SIP';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Live/SIP'

response_json = requests.get (url)

/Live/WaitDuration GET v1

https://api.callone.de/v1000/json///Live/WaitDuration

NameValueTypeRequ.ValuesDescription
skill_groupNumber-
routingNumber-
groupNumber-
curl -X GET "https://api.callone.de/v1000/json///Live/WaitDuration" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Live/WaitDuration?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Live/WaitDuration'

response_json = requests.get (url, data=api_parameters)

/Live/WaitList GET v1

https://api.callone.de/v1000/json///Live/WaitList

NameValueTypeRequ.ValuesDescription
skill_groupNumber-
routingNumber-
curl -X GET "https://api.callone.de/v1000/json///Live/WaitList" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Live/WaitList?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Live/WaitList'

response_json = requests.get (url, data=api_parameters)

/Live/Wallboard GET v1

https://api.callone.de/v1000/json///Live/Wallboard

NameValueTypeRequ.ValuesDescription
timespanString-15
24H
30
45
60
TODAY
YESTERDAY
filterString-id
sortString-id
name
sort_id
curl -X GET "https://api.callone.de/v1000/json///Live/Wallboard" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Live/Wallboard?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Live/Wallboard'

response_json = requests.get (url, data=api_parameters)
Log

/Log/Calls/API GET v1

https://api.callone.de/v1000/json///Log/Calls/API

NameValueTypeRequ.ValuesDescription
start_dateDate-
start_timeTime-
end_dateDate-
end_timeTime-
cdr_idNumber-
routing_idNumber-
sortString-cdr_id
created
id
routing_id
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Log/Calls/API" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Log/Calls/API?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Log/Calls/API'

response_json = requests.get (url, data=api_parameters)

/Log/SIP/Device/Redirection GET v1

https://api.callone.de/v1000/json///Log/SIP/Device/Redirection

NameValueTypeRequ.ValuesDescription
start_dateDate-
start_timeTime-
end_dateDate-
end_timeTime-
macString-
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Log/SIP/Device/Redirection" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Log/SIP/Device/Redirection?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Log/SIP/Device/Redirection'

response_json = requests.get (url, data=api_parameters)
Numbers

/Numbers/ GET v1

https://api.callone.de/v1000/json///Numbers/

NameValueTypeRequ.ValuesDescription
filterString-created
id
profile_id
type
sortString-created
id
type
expandString-ddis
location
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Numbers/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Numbers/?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Numbers/'

response_json = requests.get (url, data=api_parameters)

/Numbers/COUNT GET v1

https://api.callone.de/v1000/json///Numbers/COUNT

curl -X GET "https://api.callone.de/v1000/json///Numbers/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Numbers/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Numbers/COUNT'

response_json = requests.get (url)

/Numbers/ID GET v1

https://api.callone.de/v1000/json///Numbers/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
expandString-ddis
location
curl -X GET "https://api.callone.de/v1000/json///Numbers/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Numbers/ID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Numbers/ID'

response_json = requests.get (url, data=api_parameters)

/Numbers/ID/DDI POST v1

https://api.callone.de/v1000/json///Numbers/ID/DDI

NameValueTypeRequ.ValuesDescription
IDURLYes
ddiNumberYes
curl -X POST "https://api.callone.de/v1000/json///Numbers/ID/DDI" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Numbers/ID/DDI';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Numbers/ID/DDI'

response_json = requests.post (url, data=api_parameters)
PhoneBook

/PhoneBook/Contacts GET v1

https://api.callone.de/v1000/json///PhoneBook/Contacts

NameValueTypeRequ.ValuesDescription
filterString-company
firstname
group_id
id
lastname
note
owner_id
owner_type
private
expandString-address
free
mail
note
phone
web
sortString-company
firstname
gender
id
lastname
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///PhoneBook/Contacts" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts'

response_json = requests.get (url, data=api_parameters)

/PhoneBook/Contacts POST v1

https://api.callone.de/v1000/json///PhoneBook/Contacts

NameValueTypeRequ.ValuesDescription
genderString-
companyString-
positionString-
departmentString-
titleString-
firstnameString-
lastnameString-
privateString-false
true
owner_typeString-Admin
Agent
SuperAdmin
User
owner_idNumber-
creator_typeString-Admin
Agent
SuperAdmin
User
creator_idNumber-
address1Object-
address2Object-
address3Object-
address4Object-
phone1String-
phone2String-
phone3String-
phone4String-
phone5String-
phone6String-
phone7String-
phone8String-
phone9String-
phone10String-
phone11String-
mail1String-
mail2String-
url1String-
url2String-
addressesObject-
phonesObject-
websObject-
freesObject-
groupsObject-
curl -X POST "https://api.callone.de/v1000/json///PhoneBook/Contacts" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts'

response_json = requests.post (url, data=api_parameters)

/PhoneBook/Contacts/CID GET v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/CID

NameValueTypeRequ.ValuesDescription
CIDURLYes
expandString-address
free
mail
note
phone
web
curl -X GET "https://api.callone.de/v1000/json///PhoneBook/Contacts/CID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID'

response_json = requests.get (url, data=api_parameters)

/PhoneBook/Contacts/CID PATCH v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/CID

NameValueTypeRequ.ValuesDescription
CIDURLYes
genderString-
companyString-
positionString-
departmentString-
titleString-
firstnameString-
lastnameString-
privateString-false
true
owner_typeString-Admin
Agent
SuperAdmin
User
owner_idNumber-
curl -X PATCH "https://api.callone.de/v1000/json///PhoneBook/Contacts/CID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID'

response_json = requests.patch (url, data=api_parameters)

/PhoneBook/Contacts/CID PUT v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/CID

NameValueTypeRequ.ValuesDescription
CIDURLYes
genderString-
companyString-
positionString-
departmentString-
titleString-
firstnameString-
lastnameString-
privateString-false
true
owner_typeString-Admin
Agent
SuperAdmin
User
owner_idNumber-
addressesObject-
phonesObject-
websObject-
freesObject-
groupsObject-
curl -X PUT "https://api.callone.de/v1000/json///PhoneBook/Contacts/CID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID'

response_json = requests.put (url, data=api_parameters)

/PhoneBook/Contacts/CID DELETE v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/CID

NameValueTypeRequ.ValuesDescription
CIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///PhoneBook/Contacts/CID"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID'

response_json = requests.delete (url)

/PhoneBook/Contacts/CID/Address POST v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Address

NameValueTypeRequ.ValuesDescription
CIDURLYes
typeNumberYes
streetString-
zipcodeNumber-
cityString-
countryString-
curl -X POST "https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Address" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Address';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Address'

response_json = requests.post (url, data=api_parameters)

/PhoneBook/Contacts/CID/Address/ID PATCH v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_1162323490_placeholder">CID/Address/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
typeNumber-
streetString-
zipcodeString-
cityString-
countryString-
curl -X PATCH "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_1162323490_placeholder">CID/Address/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_1162323490_placeholder">CID/Address/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_1162323490_placeholder">CID/Address/ID'

response_json = requests.patch (url, data=api_parameters)

/PhoneBook/Contacts/CID/Address/ID DELETE v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_772222220_placeholder">CID/Address/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_772222220_placeholder">CID/Address/ID"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_772222220_placeholder">CID/Address/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_772222220_placeholder">CID/Address/ID'

response_json = requests.delete (url)

/PhoneBook/Contacts/CID/Free/ID DELETE v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_646138165_placeholder">CID/Free/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_646138165_placeholder">CID/Free/ID"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_646138165_placeholder">CID/Free/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_646138165_placeholder">CID/Free/ID'

response_json = requests.delete (url)

/PhoneBook/Contacts/CID/Groups GET v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Groups

NameValueTypeRequ.ValuesDescription
CIDURLYes
curl -X GET "https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Groups"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Groups';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Groups'

response_json = requests.get (url)

/PhoneBook/Contacts/CID/Mail POST v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Mail

NameValueTypeRequ.ValuesDescription
CIDURLYes
typeNumberYes
valueStringYes
curl -X POST "https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Mail" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Mail';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Mail'

response_json = requests.post (url, data=api_parameters)

/PhoneBook/Contacts/CID/Mail/ID PATCH v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_582652777_placeholder">CID/Mail/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
typeNumber-
valueString-
curl -X PATCH "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_582652777_placeholder">CID/Mail/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_582652777_placeholder">CID/Mail/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_582652777_placeholder">CID/Mail/ID'

response_json = requests.patch (url, data=api_parameters)

/PhoneBook/Contacts/CID/Mail/ID DELETE v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_310099_placeholder">CID/Mail/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_310099_placeholder">CID/Mail/ID"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_310099_placeholder">CID/Mail/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_310099_placeholder">CID/Mail/ID'

response_json = requests.delete (url)

/PhoneBook/Contacts/CID/Note POST v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Note

NameValueTypeRequ.ValuesDescription
CIDURLYes
valueStringYes
curl -X POST "https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Note" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Note';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Note'

response_json = requests.post (url, data=api_parameters)

/PhoneBook/Contacts/CID/Note/ID PATCH v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_1017562813_placeholder">CID/Note/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
valueStringYes
curl -X PATCH "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_1017562813_placeholder">CID/Note/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_1017562813_placeholder">CID/Note/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_1017562813_placeholder">CID/Note/ID'

response_json = requests.patch (url, data=api_parameters)

/PhoneBook/Contacts/CID/Note/ID DELETE v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_818411302_placeholder">CID/Note/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_818411302_placeholder">CID/Note/ID"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_818411302_placeholder">CID/Note/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_818411302_placeholder">CID/Note/ID'

response_json = requests.delete (url)

/PhoneBook/Contacts/CID/Phone POST v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Phone

NameValueTypeRequ.ValuesDescription
CIDURLYes
typeNumberYes
valueStringYes
curl -X POST "https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Phone" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Phone';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Phone'

response_json = requests.post (url, data=api_parameters)

/PhoneBook/Contacts/CID/Phone/ID PATCH v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_49861525_placeholder">CID/Phone/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
typeNumber-
valueString-
curl -X PATCH "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_49861525_placeholder">CID/Phone/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_49861525_placeholder">CID/Phone/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_49861525_placeholder">CID/Phone/ID'

response_json = requests.patch (url, data=api_parameters)

/PhoneBook/Contacts/CID/Phone/ID DELETE v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_299365940_placeholder">CID/Phone/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_299365940_placeholder">CID/Phone/ID"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_299365940_placeholder">CID/Phone/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_299365940_placeholder">CID/Phone/ID'

response_json = requests.delete (url)

/PhoneBook/Contacts/CID/Web POST v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Web

NameValueTypeRequ.ValuesDescription
CIDURLYes
typeNumberYes
valueStringYes
curl -X POST "https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Web" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Web';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/CID/Web'

response_json = requests.post (url, data=api_parameters)

/PhoneBook/Contacts/CID/Web/ID PATCH v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_777412797_placeholder">CID/Web/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
typeNumber-
valueString-
curl -X PATCH "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_777412797_placeholder">CID/Web/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_777412797_placeholder">CID/Web/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_777412797_placeholder">CID/Web/ID'

response_json = requests.patch (url, data=api_parameters)

/PhoneBook/Contacts/CID/Web/ID DELETE v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_260807366_placeholder">CID/Web/ID

NameValueTypeRequ.ValuesDescription
CIDURLYes
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_260807366_placeholder">CID/Web/ID"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_260807366_placeholder">CID/Web/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/ID_260807366_placeholder">CID/Web/ID'

response_json = requests.delete (url)

/PhoneBook/Contacts/COUNT GET v1

https://api.callone.de/v1000/json///PhoneBook/Contacts/COUNT

NameValueTypeRequ.ValuesDescription
filterString-company
firstname
group_id
id
lastname
note
owner_id
owner_type
private
curl -X GET "https://api.callone.de/v1000/json///PhoneBook/Contacts/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Contacts/COUNT'

response_json = requests.get (url, data=api_parameters)

/PhoneBook/FreeFields GET v1

https://api.callone.de/v1000/json///PhoneBook/FreeFields

curl -X GET "https://api.callone.de/v1000/json///PhoneBook/FreeFields"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/FreeFields';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/FreeFields'

response_json = requests.get (url)

/PhoneBook/Groups GET v1

https://api.callone.de/v1000/json///PhoneBook/Groups

curl -X GET "https://api.callone.de/v1000/json///PhoneBook/Groups"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Groups';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Groups'

response_json = requests.get (url)

/PhoneBook/Groups/COUNT GET v1

https://api.callone.de/v1000/json///PhoneBook/Groups/COUNT

curl -X GET "https://api.callone.de/v1000/json///PhoneBook/Groups/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Groups/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Groups/COUNT'

response_json = requests.get (url)

/PhoneBook/Groups/GID GET v1

https://api.callone.de/v1000/json///PhoneBook/Groups/GID

NameValueTypeRequ.ValuesDescription
GIDURLYes
curl -X GET "https://api.callone.de/v1000/json///PhoneBook/Groups/GID"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Groups/GID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Groups/GID'

response_json = requests.get (url)

/PhoneBook/Groups/GID/Items GET v1

https://api.callone.de/v1000/json///PhoneBook/Groups/GID/Items

NameValueTypeRequ.ValuesDescription
GIDURLYes
curl -X GET "https://api.callone.de/v1000/json///PhoneBook/Groups/GID/Items"
<?php
$url = 'https://api.callone.de/v1000/json///PhoneBook/Groups/GID/Items';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///PhoneBook/Groups/GID/Items'

response_json = requests.get (url)

/PhoneBook/Import POST v1

https://api.callone.de/v1000/json///PhoneBook/Import

NameValueTypeRequ.ValuesDescription
typeStringYescontacts
fileStringYes
dryrunString-false
true
curl -X POST "https://api.callone.de/v1000/json///PhoneBook/Import" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///PhoneBook/Import';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///PhoneBook/Import'

response_json = requests.post (url, data=api_parameters)
Routing

/Routing/ GET v1

https://api.callone.de/v1000/json///Routing/

NameValueTypeRequ.ValuesDescription
filterString-id
module_id
limitNumber-
offsetNumber-
expandString-history
ivr
plugins
settings
curl -X GET "https://api.callone.de/v1000/json///Routing/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Routing/?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Routing/'

response_json = requests.get (url, data=api_parameters)

/Routing/ POST v1

https://api.callone.de/v1000/json///Routing/

NameValueTypeRequ.ValuesDescription
midNumberYes
point_idNumber-
number_idNumber-
number_ddi_idNumber-
routing_descriptionString-
var_costcenter_idNumber-
var_presentationString-
var_destinationString-
point_destinationString-
multi_destinationObject-
multirp_destinationObject-
play_introString-
play_waitString-
play_whisperingString-
curl -X POST "https://api.callone.de/v1000/json///Routing/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Routing/';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Routing/'

response_json = requests.post (url, data=api_parameters)

/Routing/COUNT GET v1

https://api.callone.de/v1000/json///Routing/COUNT

NameValueTypeRequ.ValuesDescription
filterString-id
module_id
curl -X GET "https://api.callone.de/v1000/json///Routing/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Routing/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Routing/COUNT'

response_json = requests.get (url, data=api_parameters)

/Routing/ID GET v1

https://api.callone.de/v1000/json///Routing/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
expandString-history
ivr
plugins
settings
curl -X GET "https://api.callone.de/v1000/json///Routing/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Routing/ID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Routing/ID'

response_json = requests.get (url, data=api_parameters)

/Routing/ID PATCH v1

https://api.callone.de/v1000/json///Routing/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
routing_descriptionString-
var_costcenter_idNumber-
var_presentationString-
var_destinationString-
point_destinationString-
multi_destinationObject-
multirp_destinationObject-
play_introString-
play_waitString-
play_whisperingString-
curl -X PATCH "https://api.callone.de/v1000/json///Routing/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Routing/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Routing/ID'

response_json = requests.patch (url, data=api_parameters)

/Routing/ID DELETE v1

https://api.callone.de/v1000/json///Routing/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Routing/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Routing/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Routing/ID'

response_json = requests.delete (url)

/Routing/ID/Flow GET v1

https://api.callone.de/v1000/json///Routing/ID/Flow

NameValueTypeRequ.ValuesDescription
IDURLYes
showString-times
curl -X GET "https://api.callone.de/v1000/json///Routing/ID/Flow" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Routing/ID/Flow?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Routing/ID/Flow'

response_json = requests.get (url, data=api_parameters)

/Routing/ID/History GET v1

https://api.callone.de/v1000/json///Routing/ID/History

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Routing/ID/History"
<?php
$url = 'https://api.callone.de/v1000/json///Routing/ID/History';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Routing/ID/History'

response_json = requests.get (url)

/Routing/Points GET v1

https://api.callone.de/v1000/json///Routing/Points

curl -X GET "https://api.callone.de/v1000/json///Routing/Points"
<?php
$url = 'https://api.callone.de/v1000/json///Routing/Points';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Routing/Points'

response_json = requests.get (url)

/Routing/Points POST v1

https://api.callone.de/v1000/json///Routing/Points

NameValueTypeRequ.ValuesDescription
nameStringYes
curl -X POST "https://api.callone.de/v1000/json///Routing/Points" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Routing/Points';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Routing/Points'

response_json = requests.post (url, data=api_parameters)

/Routing/Points/COUNT GET v1

https://api.callone.de/v1000/json///Routing/Points/COUNT

curl -X GET "https://api.callone.de/v1000/json///Routing/Points/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///Routing/Points/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Routing/Points/COUNT'

response_json = requests.get (url)

/Routing/Points/ID GET v1

https://api.callone.de/v1000/json///Routing/Points/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///Routing/Points/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Routing/Points/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Routing/Points/ID'

response_json = requests.get (url)

/Routing/Points/ID DELETE v1

https://api.callone.de/v1000/json///Routing/Points/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///Routing/Points/ID"
<?php
$url = 'https://api.callone.de/v1000/json///Routing/Points/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///Routing/Points/ID'

response_json = requests.delete (url)
SIP

/SIP/Devices GET v1

https://api.callone.de/v1000/json///SIP/Devices

curl -X GET "https://api.callone.de/v1000/json///SIP/Devices"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Devices';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Devices'

response_json = requests.get (url)

/SIP/Devices/COUNT GET v1

https://api.callone.de/v1000/json///SIP/Devices/COUNT

curl -X GET "https://api.callone.de/v1000/json///SIP/Devices/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Devices/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Devices/COUNT'

response_json = requests.get (url)

/SIP/Devices/Cisco POST v1

https://api.callone.de/v1000/json///SIP/Devices/Cisco

NameValueTypeRequ.ValuesDescription
macStringYes
typeStringYesata191
ata192
spa112
spa122
descriptionStringYes
linesObject-
templateString-
curl -X POST "https://api.callone.de/v1000/json///SIP/Devices/Cisco" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Devices/Cisco';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Devices/Cisco'

response_json = requests.post (url, data=api_parameters)

/SIP/Devices/Gigaset POST v1

https://api.callone.de/v1000/json///SIP/Devices/Gigaset

NameValueTypeRequ.ValuesDescription
macStringYes
macIDStringYes
typeStringYesde310
de410
de700
de900
n510
n670
n720
n870
descriptionStringYes
connectionsObject-
templateString-
curl -X POST "https://api.callone.de/v1000/json///SIP/Devices/Gigaset" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Devices/Gigaset';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Devices/Gigaset'

response_json = requests.post (url, data=api_parameters)

/SIP/Devices/ID GET v1

https://api.callone.de/v1000/json///SIP/Devices/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///SIP/Devices/ID"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID'

response_json = requests.get (url)

/SIP/Devices/ID DELETE v1

https://api.callone.de/v1000/json///SIP/Devices/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///SIP/Devices/ID"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID'

response_json = requests.delete (url)

/SIP/Devices/ID/FunctionKeys GET v1

https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys'

response_json = requests.get (url)

/SIP/Devices/ID/FunctionKeys POST v1

https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys

NameValueTypeRequ.ValuesDescription
IDURLYes
keyNumberYes
typeStringYesblf
dest
dtmf
park
redirect
speed
starcode
transfer
url
valueStringYes
labelStringYes
curl -X POST "https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys'

response_json = requests.post (url, data=api_parameters)

/SIP/Devices/ID/FunctionKeys/COUNT GET v1

https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/COUNT

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/COUNT'

response_json = requests.get (url)

/SIP/Devices/ID/FunctionKeys/KEY GET v1

https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY

NameValueTypeRequ.ValuesDescription
IDURLYes
KEYURLYes
curl -X GET "https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY'

response_json = requests.get (url)

/SIP/Devices/ID/FunctionKeys/KEY PATCH v1

https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY

NameValueTypeRequ.ValuesDescription
IDURLYes
KEYURLYes
typeStringYesblf
dest
dtmf
park
redirect
speed
starcode
transfer
url
valueStringYes
labelStringYes
curl -X PATCH "https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY'

response_json = requests.patch (url, data=api_parameters)

/SIP/Devices/ID/FunctionKeys/KEY DELETE v1

https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY

NameValueTypeRequ.ValuesDescription
IDURLYes
KEYURLYes
curl -X DELETE "https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/FunctionKeys/KEY'

response_json = requests.delete (url)

/SIP/Devices/ID/Multicell GET v1

https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell'

response_json = requests.get (url)

/SIP/Devices/ID/Multicell POST v1

https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell

NameValueTypeRequ.ValuesDescription
IDURLYes
macStringYes
descriptionStringYes
curl -X POST "https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell'

response_json = requests.post (url, data=api_parameters)

/SIP/Devices/ID/Multicell/SID PATCH v1

https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell/SID

NameValueTypeRequ.ValuesDescription
IDURLYes
SIDURLYes
descriptionStringYes
curl -X PATCH "https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell/SID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell/SID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell/SID'

response_json = requests.patch (url, data=api_parameters)

/SIP/Devices/ID/Multicell/SID DELETE v1

https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell/SID

NameValueTypeRequ.ValuesDescription
IDURLYes
SIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell/SID"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell/SID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Devices/ID/Multicell/SID'

response_json = requests.delete (url)

/SIP/Devices/Patton POST v1

https://api.callone.de/v1000/json///SIP/Devices/Patton

NameValueTypeRequ.ValuesDescription
macStringYes
typeStringYessn4112
sn4114
descriptionStringYes
linesObject-
templateString-
curl -X POST "https://api.callone.de/v1000/json///SIP/Devices/Patton" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Devices/Patton';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Devices/Patton'

response_json = requests.post (url, data=api_parameters)

/SIP/Devices/Snom POST v1

https://api.callone.de/v1000/json///SIP/Devices/Snom

NameValueTypeRequ.ValuesDescription
macStringYes
descriptionStringYes
identitiesObject-
templateString-
curl -X POST "https://api.callone.de/v1000/json///SIP/Devices/Snom" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Devices/Snom';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Devices/Snom'

response_json = requests.post (url, data=api_parameters)

/SIP/Devices/Yealink POST v1

https://api.callone.de/v1000/json///SIP/Devices/Yealink

/SIP/Groups GET v1

https://api.callone.de/v1000/json///SIP/Groups

NameValueTypeRequ.ValuesDescription
expandString-members
curl -X GET "https://api.callone.de/v1000/json///SIP/Groups" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Groups?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Groups'

response_json = requests.get (url, data=api_parameters)

/SIP/Groups/COUNT GET v1

https://api.callone.de/v1000/json///SIP/Groups/COUNT

curl -X GET "https://api.callone.de/v1000/json///SIP/Groups/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Groups/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Groups/COUNT'

response_json = requests.get (url)

/SIP/Groups/ID GET v1

https://api.callone.de/v1000/json///SIP/Groups/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
expandString-members
curl -X GET "https://api.callone.de/v1000/json///SIP/Groups/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Groups/ID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Groups/ID'

response_json = requests.get (url, data=api_parameters)

/SIP/Groups/ID DELETE v1

https://api.callone.de/v1000/json///SIP/Groups/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///SIP/Groups/ID"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Groups/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Groups/ID'

response_json = requests.delete (url)

/SIP/Groups/ID/Members GET v1

https://api.callone.de/v1000/json///SIP/Groups/ID/Members

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///SIP/Groups/ID/Members"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Groups/ID/Members';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Groups/ID/Members'

response_json = requests.get (url)

/SIP/Groups/ID/Members POST v1

https://api.callone.de/v1000/json///SIP/Groups/ID/Members

NameValueTypeRequ.ValuesDescription
IDURLYes
user_idNumberYes
priorityNumber-
curl -X POST "https://api.callone.de/v1000/json///SIP/Groups/ID/Members" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Groups/ID/Members';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Groups/ID/Members'

response_json = requests.post (url, data=api_parameters)

/SIP/Groups/ID/Members/UID DELETE v1

https://api.callone.de/v1000/json///SIP/Groups/ID/Members/UID

NameValueTypeRequ.ValuesDescription
IDURLYes
UIDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///SIP/Groups/ID/Members/UID"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Groups/ID/Members/UID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Groups/ID/Members/UID'

response_json = requests.delete (url)

/SIP/Numbers GET v1

https://api.callone.de/v1000/json///SIP/Numbers

curl -X GET "https://api.callone.de/v1000/json///SIP/Numbers"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Numbers';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Numbers'

response_json = requests.get (url)

/SIP/Speeddials GET v1

https://api.callone.de/v1000/json///SIP/Speeddials

curl -X GET "https://api.callone.de/v1000/json///SIP/Speeddials"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Speeddials';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Speeddials'

response_json = requests.get (url)

/SIP/Speeddials POST v1

https://api.callone.de/v1000/json///SIP/Speeddials

NameValueTypeRequ.ValuesDescription
numberNumberYes
descriptionStringYes
functionStringYesconference
group
number
park
routing_point
unpark
user
valet_park
destinationStringYes
costcenter_idNumber-
curl -X POST "https://api.callone.de/v1000/json///SIP/Speeddials" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Speeddials';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Speeddials'

response_json = requests.post (url, data=api_parameters)

/SIP/Speeddials/COUNT GET v1

https://api.callone.de/v1000/json///SIP/Speeddials/COUNT

curl -X GET "https://api.callone.de/v1000/json///SIP/Speeddials/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Speeddials/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Speeddials/COUNT'

response_json = requests.get (url)

/SIP/Speeddials/ID GET v1

https://api.callone.de/v1000/json///SIP/Speeddials/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X GET "https://api.callone.de/v1000/json///SIP/Speeddials/ID"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Speeddials/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Speeddials/ID'

response_json = requests.get (url)

/SIP/Users GET v1

https://api.callone.de/v1000/json///SIP/Users

NameValueTypeRequ.ValuesDescription
sortString-id
name
username
limitNumber-
offsetNumber-
expandString-addons
agent
location
password
quick
speeddials
curl -X GET "https://api.callone.de/v1000/json///SIP/Users" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Users?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Users'

response_json = requests.get (url, data=api_parameters)

/SIP/Users POST v1

https://api.callone.de/v1000/json///SIP/Users

NameValueTypeRequ.ValuesDescription
nameStringYes
numberNumber-
templateNumber-
location_idNumber-
costcenter_idNumber-
speeddial_numberNumber-
dial_prefix_cityString-
dial_prefix_countryString-
user_provided_numberString-
hold_musicString-
allow_loginString-false
true
curl -X POST "https://api.callone.de/v1000/json///SIP/Users" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Users';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Users'

response_json = requests.post (url, data=api_parameters)

/SIP/Users/COUNT GET v1

https://api.callone.de/v1000/json///SIP/Users/COUNT

curl -X GET "https://api.callone.de/v1000/json///SIP/Users/COUNT"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Users/COUNT';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Users/COUNT'

response_json = requests.get (url)

/SIP/Users/ID GET v1

https://api.callone.de/v1000/json///SIP/Users/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
expandString-addons
agent
location
password
quick
speeddials
curl -X GET "https://api.callone.de/v1000/json///SIP/Users/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Users/ID?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Users/ID'

response_json = requests.get (url, data=api_parameters)

/SIP/Users/ID PATCH v1

https://api.callone.de/v1000/json///SIP/Users/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
nameString-
location_idNumber-
costcenter_idString-
speeddial_numberString-
speeddial_displayString-false
true
dial_prefix_cityString-
dial_prefix_countryString-
user_provided_numberString-
user_provided_allowString-false
true
calls_inbound_allowNumber-
calls_outbound_allowNumber-
hold_musicString-
fw_allString-
fw_externalString-
fw_internalString-
bobString-false
true
dndString-false
true
inactiveString-false
true
allow_loginString-false
true
allow_taxcodesString-all
comfort
none
allow_registerString-
allow_outboundString-
allow_uri_toString-false
true
show_statistics_anonymousString-false
true
show_livecenterString-false
true
register_expireNumber-
number_formatString-e164
international
national
pluse164
codecString-G722
GSM
H263
H264
PCMA
PCMU
srtpString-auto
false
true
freeseatString-false
true
freeseat_acd_statusNumber-
recordNumber-
curl -X PATCH "https://api.callone.de/v1000/json///SIP/Users/ID" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Users/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Users/ID'

response_json = requests.patch (url, data=api_parameters)

/SIP/Users/ID DELETE v1

https://api.callone.de/v1000/json///SIP/Users/ID

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///SIP/Users/ID"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Users/ID';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Users/ID'

response_json = requests.delete (url)

/SIP/Users/ID/Quick POST v1

https://api.callone.de/v1000/json///SIP/Users/ID/Quick

NameValueTypeRequ.ValuesDescription
IDURLYes
number_ddi_idNumberYes
play_introString-
var_noanswer_busy_ringing_durationNumber-
play_noanswer_busyString-
point_noanswer_busyString-
var_noanswer_busy_mailbox_mail_toString-
var_noanswer_busy_mailbox_record_maxlengthNumber-
var_noanswer_busy_mailbox_only_mailString-false
true
open_office_hoursObject-
var_out_of_time_no_introString-false
true
play_out_of_timeString-
point_out_of_timeString-
var_out_of_time_mailbox_mail_toString-
var_out_of_time_mailbox_record_maxlengthNumber-
var_out_of_time_mailbox_only_mailString-false
true
var_langString-de
en
curl -X POST "https://api.callone.de/v1000/json///SIP/Users/ID/Quick" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Users/ID/Quick';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Users/ID/Quick'

response_json = requests.post (url, data=api_parameters)

/SIP/Users/ID/Quick PATCH v1

https://api.callone.de/v1000/json///SIP/Users/ID/Quick

NameValueTypeRequ.ValuesDescription
IDURLYes
number_ddi_idNumber-
play_introString-
var_noanswer_busy_ringing_durationNumber-
play_noanswer_busyString-
point_noanswer_busyString-
var_noanswer_busy_mailbox_mail_toString-
var_noanswer_busy_mailbox_record_maxlengthNumber-
var_noanswer_busy_mailbox_only_mailString-false
true
open_office_hoursObject-
var_out_of_time_no_introString-false
true
play_out_of_timeString-
point_out_of_timeString-
var_out_of_time_mailbox_mail_toString-
var_out_of_time_mailbox_record_maxlengthNumber-
var_out_of_time_mailbox_only_mailString-false
true
var_langString-de
en
curl -X PATCH "https://api.callone.de/v1000/json///SIP/Users/ID/Quick" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Users/ID/Quick';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Users/ID/Quick'

response_json = requests.patch (url, data=api_parameters)

/SIP/Users/ID/Quick DELETE v1

https://api.callone.de/v1000/json///SIP/Users/ID/Quick

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///SIP/Users/ID/Quick"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Users/ID/Quick';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Users/ID/Quick'

response_json = requests.delete (url)

/SIP/Users/ID/msteams PATCH v1

https://api.callone.de/v1000/json///SIP/Users/ID/msteams

NameValueTypeRequ.ValuesDescription
IDURLYes
user_idNumberYes
curl -X PATCH "https://api.callone.de/v1000/json///SIP/Users/ID/msteams" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SIP/Users/ID/msteams';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PATCH');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SIP/Users/ID/msteams'

response_json = requests.patch (url, data=api_parameters)

/SIP/Users/ID/msteams DELETE v1

https://api.callone.de/v1000/json///SIP/Users/ID/msteams

NameValueTypeRequ.ValuesDescription
IDURLYes
curl -X DELETE "https://api.callone.de/v1000/json///SIP/Users/ID/msteams"
<?php
$url = 'https://api.callone.de/v1000/json///SIP/Users/ID/msteams';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

url = 'https://api.callone.de/v1000/json///SIP/Users/ID/msteams'

response_json = requests.delete (url)
SMS

/SMS/ POST v1

https://api.callone.de/v1000/json///SMS/

NameValueTypeRequ.ValuesDescription
destinationStringYes
senderStringYes
textStringYes
curl -X POST "https://api.callone.de/v1000/json///SMS/" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///SMS/';

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt ($ch, CURLOPT_POSTFIELDS, json_encode ($api_parameters));
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///SMS/'

response_json = requests.post (url, data=api_parameters)
Statistics

/Statistics/CallCoding GET v1

https://api.callone.de/v1000/json///Statistics/CallCoding

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
filterString-duration
id
wait_duration
curl -X GET "https://api.callone.de/v1000/json///Statistics/CallCoding" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/CallCoding?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/CallCoding'

response_json = requests.get (url, data=api_parameters)

/Statistics/CallCoding/Days GET v1

https://api.callone.de/v1000/json///Statistics/CallCoding/Days

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
filterString-duration
id
wait_duration
curl -X GET "https://api.callone.de/v1000/json///Statistics/CallCoding/Days" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/CallCoding/Days?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/CallCoding/Days'

response_json = requests.get (url, data=api_parameters)

/Statistics/CallCoding/EVN GET v1

https://api.callone.de/v1000/json///Statistics/CallCoding/EVN

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
filterString-duration
id
wait_duration
sortString-created
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Statistics/CallCoding/EVN" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/CallCoding/EVN?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/CallCoding/EVN'

response_json = requests.get (url, data=api_parameters)

/Statistics/CallOrigination GET v1

https://api.callone.de/v1000/json///Statistics/CallOrigination

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
call_statusString-overflow
successful
unsuccessful
call_typeString-fax
sip
voice
filterString-duration
routing_id
wait_duration
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Statistics/CallOrigination" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/CallOrigination?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/CallOrigination'

response_json = requests.get (url, data=api_parameters)

/Statistics/CallQuality/GROUP GET v1

https://api.callone.de/v1000/json///Statistics/CallQuality/GROUP

NameValueTypeRequ.ValuesDescription
GROUPURLYesacceptable
all
bad
good
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
sip_userString-
sortString-cdr_id
created
destination
id
mos
quality
service
uuid
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Statistics/CallQuality/GROUP" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/CallQuality/GROUP?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/CallQuality/GROUP'

response_json = requests.get (url, data=api_parameters)

/Statistics/Days GET v1

https://api.callone.de/v1000/json///Statistics/Days

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
serviceString-
start_timeTime-
end_timeTime-
daysString-
callerString-
call_statusString-overflow
successful
unsuccessful
opening_timesString-false
true
call_typeString-fax
sip
voice
call_durationNumber-
call_duration_directionString-g
l
wait_durationNumber-
wait_duration_directionString-g
l
ddiString-false
true
outboundString-false
true
easyString-false
true
curl -X GET "https://api.callone.de/v1000/json///Statistics/Days" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/Days?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/Days'

response_json = requests.get (url, data=api_parameters)

/Statistics/Destinations GET v1

https://api.callone.de/v1000/json///Statistics/Destinations

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
opening_timesString-false
true
call_statusString-overflow
successful
unsuccessful
call_typeString-fax
sip
voice
outboundString-false
true
filterString-duration
wait_duration
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Statistics/Destinations" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/Destinations?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/Destinations'

response_json = requests.get (url, data=api_parameters)

/Statistics/EVN/Destinations GET v1

https://api.callone.de/v1000/json///Statistics/EVN/Destinations

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
ddiString-false
true
call_statusString-overflow
successful
unsuccessful
opening_timesString-false
true
call_typeString-fax
sip
voice
call_durationNumber-
call_duration_directionString-g
l
wait_durationNumber-
wait_duration_directionString-g
l
destination_list_idNumber-
destination_list_modeString-exclude
restrict
outboundString-false
true
filterString-routing_id
sortString-date_time
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Statistics/EVN/Destinations" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/EVN/Destinations?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/EVN/Destinations'

response_json = requests.get (url, data=api_parameters)

/Statistics/EVN/Destinations/COUNT GET v1

https://api.callone.de/v1000/json///Statistics/EVN/Destinations/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
ddiString-false
true
call_statusString-overflow
successful
unsuccessful
opening_timesString-false
true
call_typeString-fax
sip
voice
call_durationNumber-
call_duration_directionString-g
l
wait_durationNumber-
wait_duration_directionString-g
l
destination_list_idNumber-
destination_list_modeString-exclude
restrict
outboundString-false
true
filterString-routing_id
curl -X GET "https://api.callone.de/v1000/json///Statistics/EVN/Destinations/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/EVN/Destinations/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/EVN/Destinations/COUNT'

response_json = requests.get (url, data=api_parameters)

/Statistics/EVN/Numbers GET v1

https://api.callone.de/v1000/json///Statistics/EVN/Numbers

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
ddiString-false
true
call_statusString-overflow
successful
unsuccessful
opening_timesString-false
true
call_typeString-fax
sip
voice
call_durationNumber-
call_duration_directionString-g
l
wait_durationNumber-
wait_duration_directionString-g
l
caller_list_idNumber-
caller_list_modeString-exclude
restrict
outboundString-false
true
filterString-routing_id
sortString-date_time
limitNumber-
offsetNumber-
curl -X GET "https://api.callone.de/v1000/json///Statistics/EVN/Numbers" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/EVN/Numbers?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/EVN/Numbers'

response_json = requests.get (url, data=api_parameters)

/Statistics/EVN/Numbers/COUNT GET v1

https://api.callone.de/v1000/json///Statistics/EVN/Numbers/COUNT

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
ddiString-false
true
call_statusString-overflow
successful
unsuccessful
opening_timesString-false
true
call_typeString-fax
sip
voice
call_durationNumber-
call_duration_directionString-g
l
wait_durationNumber-
wait_duration_directionString-g
l
caller_list_idNumber-
caller_list_modeString-exclude
restrict
outboundString-false
true
filterString-routing_id
curl -X GET "https://api.callone.de/v1000/json///Statistics/EVN/Numbers/COUNT" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/EVN/Numbers/COUNT?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/EVN/Numbers/COUNT'

response_json = requests.get (url, data=api_parameters)

/Statistics/HalfHours GET v1

https://api.callone.de/v1000/json///Statistics/HalfHours

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
serviceString-
start_timeTime-
end_timeTime-
daysString-
call_statusString-overflow
successful
unsuccessful
opening_timesString-false
true
call_durationNumber-
call_duration_directionString-g
l
wait_durationNumber-
wait_duration_directionString-g
l
ddiString-false
true
outboundString-false
true
easyString-false
true
curl -X GET "https://api.callone.de/v1000/json///Statistics/HalfHours" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/HalfHours?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/HalfHours'

response_json = requests.get (url, data=api_parameters)

/Statistics/Hours GET v1

https://api.callone.de/v1000/json///Statistics/Hours

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
serviceString-
start_timeTime-
end_timeTime-
daysString-
call_statusString-overflow
successful
unsuccessful
opening_timesString-false
true
call_durationNumber-
call_duration_directionString-g
l
wait_durationNumber-
wait_duration_directionString-g
l
ddiString-false
true
outboundString-false
true
easyString-false
true
curl -X GET "https://api.callone.de/v1000/json///Statistics/Hours" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/Hours?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/Hours'

response_json = requests.get (url, data=api_parameters)

/Statistics/IVR GET v1

https://api.callone.de/v1000/json///Statistics/IVR

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
filterString-routing_id
curl -X GET "https://api.callone.de/v1000/json///Statistics/IVR" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/IVR?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/IVR'

response_json = requests.get (url, data=api_parameters)

/Statistics/Integrations GET v1

https://api.callone.de/v1000/json///Statistics/Integrations

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
integrationString-outlook
curl -X GET "https://api.callone.de/v1000/json///Statistics/Integrations" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/Integrations?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/Integrations'

response_json = requests.get (url, data=api_parameters)

/Statistics/Integrations/Days GET v1

https://api.callone.de/v1000/json///Statistics/Integrations/Days

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
integrationString-outlook
curl -X GET "https://api.callone.de/v1000/json///Statistics/Integrations/Days" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/Integrations/Days?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/Integrations/Days'

response_json = requests.get (url, data=api_parameters)

/Statistics/Minutes/HOUR GET v1

https://api.callone.de/v1000/json///Statistics/Minutes/HOUR

NameValueTypeRequ.ValuesDescription
HOURURLYes
start_dateDate-
end_dateDate-
serviceString-
start_timeTime-
end_timeTime-
daysString-
call_statusString-overflow
successful
unsuccessful
opening_timesString-false
true
call_durationNumber-
call_duration_directionString-g
l
wait_durationNumber-
wait_duration_directionString-g
l
ddiString-false
true
outboundString-false
true
easyString-false
true
curl -X GET "https://api.callone.de/v1000/json///Statistics/Minutes/HOUR" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/Minutes/HOUR?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/Minutes/HOUR'

response_json = requests.get (url, data=api_parameters)

/Statistics/Numbers GET v1

https://api.callone.de/v1000/json///Statistics/Numbers

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
serviceString-
start_timeTime-
end_timeTime-
daysString-
call_statusString-overflow
successful
unsuccessful
opening_timesString-false
true
call_typeString-fax
sip
voice
call_durationNumber-
call_duration_directionString-g
l
wait_durationNumber-
wait_duration_directionString-g
l
ddiString-false
true
outboundString-false
true
easyString-false
true
curl -X GET "https://api.callone.de/v1000/json///Statistics/Numbers" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/Numbers?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/Numbers'

response_json = requests.get (url, data=api_parameters)

/Statistics/SIP/Calls GET v1

https://api.callone.de/v1000/json///Statistics/SIP/Calls

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
call_statusString-successful
unsuccessful
call_durationNumber-
call_duration_directionString-g
l
usernameString-
curl -X GET "https://api.callone.de/v1000/json///Statistics/SIP/Calls" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/SIP/Calls?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/SIP/Calls'

response_json = requests.get (url, data=api_parameters)

/Statistics/SIP/Calls/Days GET v1

https://api.callone.de/v1000/json///Statistics/SIP/Calls/Days

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
call_statusString-successful
unsuccessful
call_durationNumber-
call_duration_directionString-g
l
usernameString-
curl -X GET "https://api.callone.de/v1000/json///Statistics/SIP/Calls/Days" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/SIP/Calls/Days?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/SIP/Calls/Days'

response_json = requests.get (url, data=api_parameters)

/Statistics/SIP/Calls/EVN GET v1

https://api.callone.de/v1000/json///Statistics/SIP/Calls/EVN

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
call_statusString-successful
unsuccessful
call_durationNumber-
call_duration_directionString-g
l
usernameString-
curl -X GET "https://api.callone.de/v1000/json///Statistics/SIP/Calls/EVN" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/SIP/Calls/EVN?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/SIP/Calls/EVN'

response_json = requests.get (url, data=api_parameters)

/Statistics/SIP/Registrations/SIP_USER GET v1

https://api.callone.de/v1000/json///Statistics/SIP/Registrations/SIP_USER

NameValueTypeRequ.ValuesDescription
SIP_USERURLYes
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
curl -X GET "https://api.callone.de/v1000/json///Statistics/SIP/Registrations/SIP_USER" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/SIP/Registrations/SIP_USER?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/SIP/Registrations/SIP_USER'

response_json = requests.get (url, data=api_parameters)

/Statistics/Survey GET v1

https://api.callone.de/v1000/json///Statistics/Survey

NameValueTypeRequ.ValuesDescription
start_dateDate-
end_dateDate-
start_timeTime-
end_timeTime-
daysString-
serviceString-
curl -X GET "https://api.callone.de/v1000/json///Statistics/Survey" -d ""
<?php
$api_parameters = array ();

$url = 'https://api.callone.de/v1000/json///Statistics/Survey?'.http_build_query ($api_parameters, '', '&');

$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt ($ch, CURLOPT_HTTPHEADER, array ('Content-Type: application/json; charset=utf-8'));
$response_json = curl_exec ($ch);
curl_close ($ch);
?>
import requests

api_parameters = {}

url = 'https://api.callone.de/v1000/json///Statistics/Survey'

response_json = requests.get (url, data=api_parameters)