Get Group Statistics
GET
/v1/groups/statistics
const url = 'https://example.com/api/v1/groups/statistics';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/groups/statistics \ --header 'Authorization: <Authorization>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”OK
Media type application/json
object
totalItemPrice
number
totalItems
integer
totalLocations
integer
totalTags
integer
totalUsers
integer
totalWithWarranty
integer
Example generated
{ "totalItemPrice": 1, "totalItems": 1, "totalLocations": 1, "totalTags": 1, "totalUsers": 1, "totalWithWarranty": 1}