List all credits
v1
get
/1/newsletters/{domain}/credits
Returns a variety of information about one or more Credits
Path parameters
domain
requiredinteger
Unique identifier of the Domain
Examples:14802
Response Body
application/json
resultstring
Possible values:successerrorasynchronous
Result of the HTTP request
Examples:success
dataarrayofCredit
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', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
Example response
application/json
{"result":"success","data":[{"id":37230,"quantity":27464,"type":"example","genre":"example","created_at":1742557104}],"total":221,"page":2,"pages":15,"items_per_page":15}