Links activity
v1
get
/1/newsletters/{domain}/campaigns/{campaign}/report/links
Return statistics about links for a campaign
domain
requiredinteger
Unique identifier of the Domain
Examples:41398
campaign
requiredinteger
Unique identifier of the Campaign
Examples:82134
Response Body
application/json
resultstring
Possible values:successerrorasynchronous
Result of the HTTP request
Examples:success
dataobject
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}/campaigns/{campaign}/report/links', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
Example response
application/json
{"result":"success"}