List all consumptions

v1
get
/1/ai/{product_id}/consumptions

Path parameters

product_id
requiredstring
Examples:example

Response Body

application/json
resultrequiredstring
Possible values:successerrorasynchronous

Result of the HTTP request

Examples:success
dataobject
totalinteger

Total number of items Added when using query parameter page

Examples:221
pageinteger

Number of the current page Added when using query parameter page

Examples:2
pagesinteger

Total number of pages Added when using query parameter page

Examples:15
items_per_pageinteger

Number of items per page Added when using query parameter page

Examples:15

Example request

                <?php
use GuzzleHttp\Client;

$client = new Client();
$headers = [
	'Authorization' => 'Bearer YOUR-TOKEN-HERE',
	'Content-Type' => 'application/json'
];

$request = new Request('GET', 'https://api.infomaniak.com/1/ai/{product_id}/consumptions', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
            

Example response

application/json
                
                    
{
"result":"success",
"total":221,
"page":2,
"pages":15,
"items_per_page":15
}