Get the latest screenshot's FileReference belonging to a Domain
GET/domains/ {domainId}/ latest-screenshot/
v2
GET
domain-get-latest-screenshot
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-d '{"domainName":"example.com","path":"/var/www"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/domains/f0f86186-0a5a-45b2-aa33-502777496347/latest-screenshot
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.domain.getLatestScreenshot({
"domainId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": {
"domainName": "example.com",
"path": "/var/www"
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\GetLatestScreenshot\GetLatestScreenshotRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\GetLatestScreenshot\GetLatestScreenshotRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// GetLatestScreenshotRequestBody to learn how to construct a valid instance
$body = new GetLatestScreenshotRequestBody(/* TODO: ... */);
$request = (new GetLatestScreenshotRequest(
domainId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->domain()->getLatestScreenshot($request);
var_dump($response->getBody();