Display an event
v2
get
/2/events/{event_id}
Returns a variety of information about a single Event specified by the requested unique identifier.
Path parameters
event_id
requiredinteger
The unique identifier (ID) of the event to request.
Examples:86324
Response Body
application/json
resultstring
Possible values:successerrorasynchronous
Result of the HTTP request
Examples:success
datarequiredEvent
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/2/events/{event_id}', $headers, $body);
$res = $client->sendAsync($request)->wait();
echo $res->getBody();
Example response
application/json
{"result":"success","data":{"id":414,"url":"ed4px6RxMG","type":"enhancement","status":"terminated","description":{"title":"Network maintenance","translations":[{"title":"Network maintenance","body":"This maintenance is intended to increase the capacity of our network infrastructure in order to accompany the growth of our activities.","language":"en"}]},"comments":"example","services":[{"id":1,"name":"hosting"}],"started_at":1743749958,"ended_at":1743286261}}