List Ingresses compatible with a certificate
POST/actions/ list-ingresses-compatible-with-certificate/
v2
POST
ingress-list-ingresses-compatible-with-certificate
List Ingresses in a Project compatible with a certificate.
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{"certificate":"string","projectId":"f0f86186-0a5a-45b2-aa33-502777496347"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/actions/list-ingresses-compatible-with-certificate
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.ingressListIngressesCompatibleWithCertificate({
"data": {
"certificate": "string",
"projectId": "f0f86186-0a5a-45b2-aa33-502777496347"
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\IngressListIngressesCompatibleWithCertificate\IngressListIngressesCompatibleWithCertificateRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\IngressListIngressesCompatibleWithCertificate\IngressListIngressesCompatibleWithCertificateRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// IngressListIngressesCompatibleWithCertificateRequestBody to learn how to construct a valid instance
$body = new IngressListIngressesCompatibleWithCertificateRequestBody(/* TODO: ... */);
$request = (new IngressListIngressesCompatibleWithCertificateRequest(
body: $body
));
$response = $client->domain()->ingressListIngressesCompatibleWithCertificate($request);
var_dump($response->getBody();