Update an Ingresses paths
PUT/ingresses/ {ingressId}/ paths/
v2
PUT
ingress-paths-deprecated
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PUT \
-d '[{"path":"string","target":{"directory":"string"}}]' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/ingresses/f0f86186-0a5a-45b2-aa33-502777496347/paths
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.ingressPathsDeprecated({
"ingressId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": [
{
"path": "string",
"target": {
"directory": "string"
}
}
]
});
assertStatus(response, 204);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\IngressPathsDeprecated\IngressPathsDeprecatedRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\IngressPathsDeprecated\IngressPathsDeprecatedRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// IngressPathsDeprecatedRequestBody to learn how to construct a valid instance
$body = new IngressPathsDeprecatedRequestBody(/* TODO: ... */);
$request = (new IngressPathsDeprecatedRequest(
ingressId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->domain()->ingressPathsDeprecated($request);
var_dump($response->getBody();