curl --request GET \
--url https://api.quivo.co/auditsimport requests
url = "https://api.quivo.co/audits"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/audits', 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.quivo.co/audits",
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.quivo.co/audits"
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.quivo.co/audits")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/audits")
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[
{
"username": "<string>",
"entityClass": "<string>",
"entityId": 123,
"auditType": "VALUE_CHANGE",
"auditHistories": [
{
"modifiedBy": "<string>",
"data": "<string>",
"auditType": "VALUE_CHANGE",
"created": "2023-11-07T05:31:56Z"
}
],
"created": "2023-11-07T05:31:56Z"
}
]Get audits
Get audit log entries for recent actions and changes.
curl --request GET \
--url https://api.quivo.co/auditsimport requests
url = "https://api.quivo.co/audits"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.quivo.co/audits', 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.quivo.co/audits",
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.quivo.co/audits"
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.quivo.co/audits")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.quivo.co/audits")
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[
{
"username": "<string>",
"entityClass": "<string>",
"entityId": 123,
"auditType": "VALUE_CHANGE",
"auditHistories": [
{
"modifiedBy": "<string>",
"data": "<string>",
"auditType": "VALUE_CHANGE",
"created": "2023-11-07T05:31:56Z"
}
],
"created": "2023-11-07T05:31:56Z"
}
]Query Parameters
Search query string used to filter results. This field supports specific syntax for filtering across multiple fields.
Optional sorting criteria for the results. Format is typically 'field:direction' (e.g., 'created:desc').
The page number to retrieve when using offset-based pagination. Ignored if 'searchAfter' is provided.
Used for cursor-based pagination. Pass the 'sort' key value from the last item of the previous page to retrieve the next set of results efficiently. Overrides 'page'.
The maximum number of items to return per page. Used for both offset and cursor-based pagination.
Response
Returns an array of audit log entries with action details, timestamps, and user information.
The name of the user
The entity class
The unique identifier for the entity
The type or category of the audit
VALUE_CHANGE, ACTION, CREATE Array of audit historie
Show child attributes
Show child attributes
Timestamp when the item was created