Account credits

v1
get
/1/newsletters/{domain}/credits/accounts

Returns a variety of information about credits for an account

Path parameters

domain
requiredinteger

Unique identifier of the Domain

Examples:60281

Response Body

application/json
resultstring
Possible values:successerrorasynchronous

Result of the HTTP request

Examples:success
datarequiredCredit
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/newsletters/{domain}/credits/accounts', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
            

Example response

application/json
                
                    
{
"result":"success",
"data":{
"id":36811,
"quantity":33075,
"type":"example",
"genre":"example",
"created_at":1742942043
},
"total":221,
"page":2,
"pages":15,
"items_per_page":15
}