List Services belonging to a Project
GET/projects/ {projectId}/ services/
v2
GET
container-list-services
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/projects/f0f86186-0a5a-45b2-aa33-502777496347/services?stackId=f0f86186-0a5a-45b2-aa33-502777496347
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.container.listServices({
"projectId": "f0f86186-0a5a-45b2-aa33-502777496347",
"queryParameters": {
"stackId": "f0f86186-0a5a-45b2-aa33-502777496347"
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Container\ListServices\ListServicesRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new ListServicesRequest(
projectId: "f0f86186-0a5a-45b2-aa33-502777496347"
))
->withStackId("f0f86186-0a5a-45b2-aa33-502777496347");
$response = $client->container()->listServices($request);
var_dump($response->getBody();