Skip to main content
GET
/
projects
Get Projects List
curl --request GET \
  --url https://relytone.data.cloud/api/v1/projects \
  --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.

Query Parameters

orgId
string
required

Organization identifier

Response

Successfully retrieved projects list

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