MENU
データベース権限作成 - Database API v1
Description
データベースにアカウントを割り当てます。
Request URL
Database API v1.0 POST /v1/databases/(uuid: database_id)/grant
Request Paramters
Parameter | Value | Style | Type | Description |
---|---|---|---|---|
X-Auth-Token | - | header | string | Userトークン |
database_id | - | URI | UUID | データベースID |
user_id | - | plain | UUID | ユーザーID |
Response Paramters
Parameter | Value | Style | Type | Description |
---|---|---|---|---|
grant | - | plain | list | - |
user_id | - | plain | UUID | ユーザーID |
status | creating | plain | string | 権限ステータス |
Request Json
{ "user_id": "5f02c821-977f-4160-812d-397a5e3c7caa" }
Normal response codes
200 - Success
Error response codes
400 - Bad Request
401 - Access Denied
404 - Not Found
409 - Conflict
Repeatable
No
Example
※エンドポイントURLにつきましては、お客様環境によって異なりますので、コントロールパネルにてご確認の上ご利用ください。
- REQ
curl -i -X POST \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "X-Auth-Token: 39be9f8d53044388b7f2e867eba8b140" \ https://database-hosting.tyo1.conoha.io/v1/databases/148147ba-8999-4901-9cd6-634db82f80ea/grant { "user_id": "5f02c821-977f-4160-812d-397a5e3c7caa" }
- RES
HTTP/1.1 200 Success Date: Tue, 09 Dec 2014 01:46:58 GMT Server: Apache Content-Length: 1003 Content-Type: application/json { "grant":{ "user_id": "5f02c821-977f-4160-812d-397a5e3c7caa", "status": "creating" } }