Get all projects

GET /project

Get all projects

Query parameters

  • sort string

    Order in which to retrieve the results

    Format should match the following pattern: ^\w+,(DESC|ASC)$. Default value is lastModified,DESC.

Responses

  • 200 application/json

    OK

    Hide response attributes Show response attributes object
    • id string Required

      Format should match the following pattern: ^[A-Za-z0-9\-]+$.

    • jdbcId string

      Format should match the following pattern: ^[A-Za-z0-9\-]+$.

    • mongodbId string

      Format should match the following pattern: ^[A-Za-z0-9\-]+$.

    • name string Required

      Minimum length is 1, maximum length is 50.

    • type string Required

      Database type or a custom database type. For example, MYSQL, ORACLE, POSTGRESQL, SQL_SERVER, COCKROACHDB, DB2, SQLANYWHERE, SYBASE, SYBASEIQ, or YUGABYTE.

    • lastModified string(date-time)
GET /project
curl \
 --request GET 'http://127.0.0.1:8278/api/v1/project'
Response examples (200)
[
  {
    "id": "string",
    "jdbcId": "string",
    "mongodbId": "string",
    "name": "string",
    "type": "ORACLE",
    "lastModified": "2025-05-04T09:42:00Z"
  }
]