User Details
curl --request GET \
--url https://api.quicko.com/entitlements/userimport requests
url = "https://api.quicko.com/entitlements/user"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quicko.com/entitlements/user', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.quicko.com/entitlements/user",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.quicko.com/entitlements/user"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.quicko.com/entitlements/user")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quicko.com/entitlements/user")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"transaction_id": "feb3fa38-bcd7-4413-a201-56145b1d1661",
"timestamp": 1763117019162,
"data": {
"@entity": "com.quicko.account.user.user_details",
"email": "john.doe@mail.com",
"credential_status": "inactive",
"id": "239A89834AXXXXXX00007F8DCD",
"updated_at": 1731218159000,
"first_name": "John",
"last_name": "Doe"
},
"code": 200
}User Details
API to get the details of the user
GET
/
entitlements
/
user
User Details
curl --request GET \
--url https://api.quicko.com/entitlements/userimport requests
url = "https://api.quicko.com/entitlements/user"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quicko.com/entitlements/user', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.quicko.com/entitlements/user",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.quicko.com/entitlements/user"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.quicko.com/entitlements/user")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quicko.com/entitlements/user")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"transaction_id": "feb3fa38-bcd7-4413-a201-56145b1d1661",
"timestamp": 1763117019162,
"data": {
"@entity": "com.quicko.account.user.user_details",
"email": "john.doe@mail.com",
"credential_status": "inactive",
"id": "239A89834AXXXXXX00007F8DCD",
"updated_at": 1731218159000,
"first_name": "John",
"last_name": "Doe"
},
"code": 200
}⌘I