Skip to main content
GET
/
projects
/
{id}
Get Project Details
curl --request GET \
  --url https://relytone.data.cloud/api/v1/projects/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "status": "active",
  "region": "<string>",
  "pgVersion": 123,
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "organization": {
    "id": "<string>",
    "name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Project identifier

Response

Successfully retrieved project details

id
string

Project identifier

name
string

Project name

status
enum<string>

Project status

Available options:
active,
inactive,
deleted
region
string

Project region

pgVersion
integer

PostgreSQL version

createdAt
string<date-time>

Creation time

updatedAt
string<date-time>

Update time

organization
object