Create linkage between an app installation and a MySQL database
PUT/appinstallations/ {appInstallationId}/ databases/
v2
PUT
deprecated-app-link-database
This route is deprecated. Use PATCH /v2/app-installations/{appInstallationId}/database instead.
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PUT \
-d '{"databaseId":"f0f86186-0a5a-45b2-aa33-502777496347","databaseUserIds":{"string":"string"},"purpose":"primary"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/appinstallations/f0f86186-0a5a-45b2-aa33-502777496347/databases
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.deprecatedAppLinkDatabase({
"appInstallationId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": {
"databaseId": "f0f86186-0a5a-45b2-aa33-502777496347",
"databaseUserIds": {
"string": "string"
},
"purpose": "primary"
}
});
assertStatus(response, 204);
use \Mittwald\ApiClient\Generated\V2\Clients\App\DeprecatedAppLinkDatabase\DeprecatedAppLinkDatabaseRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\App\DeprecatedAppLinkDatabase\DeprecatedAppLinkDatabaseRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// DeprecatedAppLinkDatabaseRequestBody to learn how to construct a valid instance
$body = new DeprecatedAppLinkDatabaseRequestBody(/* TODO: ... */);
$request = (new DeprecatedAppLinkDatabaseRequest(
appInstallationId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->app()->deprecatedAppLinkDatabase($request);
var_dump($response->getBody();