Display Domain

v1
get
/1/newsletters/{domain}

Returns a variety of information about one Domain from a Domain identifier

Path parameters

domain
requiredinteger

Unique identifier of the Domain

Examples:23287

Response Body

application/json
resultrequiredstring
Possible values:successerrorasynchronous

Result of the HTTP request

Examples:success
dataDomain

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}', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
            

Example response

application/json
                
                    
{
"result":"success",
"data":{
"id":36569,
"name":"example",
"credit_month":37922,
"status":"unknown",
"can_use_other_domains":false
}
}