Request a copy of an app installation
POST/app-installations/ {appInstallationId}/ actions/ copy/
v2
POST
app-request-appinstallation-copy
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{"description":"string","targetProjectId":"f0f86186-0a5a-45b2-aa33-502777496347"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/app-installations/f0f86186-0a5a-45b2-aa33-502777496347/actions/copy
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.app.requestAppinstallationCopy({
"appInstallationId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": {
"description": "string",
"targetProjectId": "f0f86186-0a5a-45b2-aa33-502777496347"
}
});
assertStatus(response, 201);
use \Mittwald\ApiClient\Generated\V2\Clients\App\RequestAppinstallationCopy\RequestAppinstallationCopyRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\App\RequestAppinstallationCopy\RequestAppinstallationCopyRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// RequestAppinstallationCopyRequestBody to learn how to construct a valid instance
$body = new RequestAppinstallationCopyRequestBody(/* TODO: ... */);
$request = (new RequestAppinstallationCopyRequest(
appInstallationId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->app()->requestAppinstallationCopy($request);
var_dump($response->getBody();