Create a MySQL user
POST/mysql-databases/ {mysqlDatabaseId}/ users/
v2
POST
database-create-mysql-user
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{"accessIpMask":"string","accessLevel":"full","databaseId":"f0f86186-0a5a-45b2-aa33-502777496347","description":"string","externalAccess":true,"password":"string"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/mysql-databases/f0f86186-0a5a-45b2-aa33-502777496347/users
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.database.createMysqlUser({
"mysqlDatabaseId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": {
"accessIpMask": "string",
"accessLevel": "full",
"databaseId": "f0f86186-0a5a-45b2-aa33-502777496347",
"description": "string",
"externalAccess": true,
"password": "string"
}
});
assertStatus(response, 201);
use \Mittwald\ApiClient\Generated\V2\Clients\Database\CreateMysqlUser\CreateMysqlUserRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Database\CreateMysqlUser\CreateMysqlUserRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// CreateMysqlUserRequestBody to learn how to construct a valid instance
$body = new CreateMysqlUserRequestBody(/* TODO: ... */);
$request = (new CreateMysqlUserRequest(
mysqlDatabaseId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->database()->createMysqlUser($request);
var_dump($response->getBody();