You need to sign in to do that
Don't have an account?

AJAX Custom Header
Unable to set custom header on AJAX call. On Send the Headers are added to Access-Control-Request-Headers:x-liveagent-affinity, x-liveagent-api-version rather actual Header.
$.ajax({ url:"https://zzzzzzz.salesforceliveagent.com/chat/rest/System/SessionId", dataType: 'json', Accept : "text/plain; charset=utf-8", type: 'GET', contentType: 'application/x-www-form-urlencoded', headers: { 'X-LIVEAGENT-API-VERSION': '30', 'X-LIVEAGENT-AFFINITY': 'null' }, success:function(json){ alert("Success"); }, error:function(textStatus ){ console.log(textStatus ); alert("Error"+textStatus ); } });