Create a CertificateRequest
POST/certificate-requests/
v2
POST
ssl-create-certificate-request
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{"certificate":"string","privateKey":"string","projectId":"f0f86186-0a5a-45b2-aa33-502777496347"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/certificate-requests
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.sslCreateCertificateRequest({
"data": {
"certificate": "string",
"privateKey": "string",
"projectId": "f0f86186-0a5a-45b2-aa33-502777496347"
}
});
assertStatus(response, 201);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\SslCreateCertificateRequest\SslCreateCertificateRequestRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\SslCreateCertificateRequest\SslCreateCertificateRequestRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// SslCreateCertificateRequestRequestBody to learn how to construct a valid instance
$body = new SslCreateCertificateRequestRequestBody(/* TODO: ... */);
$request = (new SslCreateCertificateRequestRequest(
body: $body
));
$response = $client->domain()->sslCreateCertificateRequest($request);
var_dump($response->getBody();