cURL
curl --request POST \ --url https://relytone.data.cloud/api/v1/projects/{id}/databases \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>" } '
{ "id": "<string>", "name": "<string>", "description": "<string>", "status": "active", "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" }
Create a new database under the specified project
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Project identifier
Database name
Database description
Database created successfully
Database identifier
Database status
active
inactive
error
Creation time
Update time
Was this page helpful?