Read Users
Pobranie wszystkich użytkowników.
GET /tenant_user
Response Body
{
"data": <LIST<TenantUser>>
}
Nazwa | Rodzaj | Opis | Zasób |
---|---|---|---|
data | <LIST<TenantUser>> |
Lista informacji o użytkownikach. | TenantUser |
Response Code
Status | Opis |
---|---|
200 | Rekordy zostały pobrane pomyślnie |
403 | Nie można wykonać takiej akcji |
404 | Nie znaleziono zasobu |
Example
curl -X GET \
$CONPEEK_URL/tenant_user \
-H 'Authorization: '$CONPEEK_KEY \
-H 'Content-Type: application/json'
import requests
import os
from urllib import parse
url = parse.urljoin(os.environ["CONPEEK_URL"], "tenant_user")
headers = {
'Content-Type': "application/json",
'Authorization': os.environ["CONPEEK_KEY"]
}
response = requests.request("GET", url, headers=headers)
print(response.text)
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => getenv("CONPEEK_URL")."/tenant_user",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => array(
"Authorization: ".getenv("CONPEEK_KEY"),
"Content-Type: application/json"
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
Response
200 OK
{
"data": [{
"id": 74,
"username": "user1",
"active": 1,
"firstname": "Jan",
"surname": "Kowalski",
"email": "jan.kowalski@example.xyz",
...
}]
}