Prisma ORM 8 is here.Read the docs
Projects

Get project

Returns the project with the given ID.

GET/v1/projects/{id}

Returns the project with the given ID.

Authorization

AuthorizationBearer <token>

OAuth2 authentication

In: header

Scope: workspace:admin, offline_access

Path Parameters

id*string
Match^(proj_)?([cC][^\s-]{8,}|[a-z0-9]+)$

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/projects/string"
{  "data": {    "id": "string",    "type": "project",    "url": "http://example.com",    "name": "string",    "logicalId": "string",    "createdAt": "2019-08-24T14:15:22Z",    "defaultRegion": "string",    "workspace": {      "id": "string",      "url": "http://example.com",      "name": "string"    }  }}