Databases
Get database
Returns the database with the given ID.
GET
/v1/databases/{databaseId}AuthorizationBearer <token>
OAuth2 authentication
In: header
Scope: workspace:admin, offline_access
Path Parameters
databaseId*string
Match
^(db_)?([cC][^\s-]{8,}|[a-z0-9]+)$Response Body
application/json
application/json
application/json
curl -X GET "https://api.prisma.io/v1/databases/string"{
"data": {
"id": "string",
"type": "database",
"name": "string",
"status": "failure",
"createdAt": "2019-08-24T14:15:22Z",
"isDefault": true,
"project": {
"id": "string",
"name": "string"
},
"region": {
"id": "string",
"name": "string"
}
}
}{
"error": {
"code": "string",
"message": "string"
}
}{
"error": {
"code": "string",
"message": "string"
}
}