Here you will find a list of some Chat attributes
Get UID
Returns the UID for a given AtomChat's Internal User ID
CURL --request POST \ --url https://api.cometondemand.net/api/v2/getUID \ --header 'Accept: application/json' \ --header 'Content-Type: application/x-www-form-urlencoded'
<?php $curl = curl_init(); curl_setopt_array($curl, [ CURLOPT_URL => "https://api.cometondemand.net/api/v2/getUID", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "POST", CURLOPT_HTTPHEADER => [ "Accept: application/json", "Content-Type: application/x-www-form-urlencoded" ], ]); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { echo "cURL Error #:" . $err; } else { echo $response; }
Get CID
Returns CID (AtomChat's Internal User ID) for a given UID
GET - https://api.cometondemand.net/api/v2/getCID
CURL --request POST \ --url https://api.cometondemand.net/api/v2/getCID \ --header 'Accept: application/json' \ --header 'Content-Type: application/x-www-form-urlencoded'
Get GUID
Returns GUID for a given CRID (CometChat's Internal Chatroom ID)
GET - https://api.cometondemand.net/api/v2/getGUID
CURL --request POST \ --url https://api.cometondemand.net/api/v2/getGUID \ --header 'Accept: application/json' \ --header 'Content-Type: application/x-www-form-urlencoded'
<?php $curl = curl_init(); curl_setopt_array($curl, [ CURLOPT_URL => "https://api.cometondemand.net/api/v2/getGUID", CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "POST", CURLOPT_HTTPHEADER => [ "Accept: application/json", "Content-Type: application/x-www-form-urlencoded" ], ]); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if ($err) { echo "cURL Error #:" . $err; } else { echo $response; }
Get CRID
Returns CRID (AtomChat's Internal Chatroom ID) for a given GUID
GET - https://api.cometondemand.net/api/v2/getCRID
CURL --request POST \ --url https://api.cometondemand.net/api/v2/getCRID \ --header 'Accept: application/json' \ --header 'Content-Type: application/x-www-form-urlencoded'
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article