Query parameters

  • sort string

    a parameter used for sort (e.g createdAt or points)

  • sortOrder string

    asc or desc

  • before string

    Use before to query for entries before a given parameter. (e.g before[createdAt]=2023-06-21T12:34:56+00:00)

  • after string

    Use after to query for entries after a given parameter. (e.g after[createdAt]=2023-06-21T12:34:56+00:00)

  • limit integer

    Limits the number of results. (default 50, max 500)

  • filter object

    Use any key value combination to query for properties (e.g name=foo)

    Hide filter attribute Show filter attribute object
    • * string | integer Additional properties

Responses

  • 200 application/json

    success

    Hide response attributes Show response attributes object
    • id string

      id of the project

    • userId string

      subject of the user owner (empty when teamId is set)

    • teamId string

      id of the owner team (empty when userId is set)

    • branch string

      branch context in which the project was created

    • name string

      name of the project

    • tags array[string]
    • createdAt string

      date in rfc3339 / ISO 8601 format when the project was created

    • updatedAt string

      date in rfc3339 / ISO 8601 format when the project was updated

GET /project
curl \
 --request GET 'https://api.universecloud.io/project' \
 --header "X-Api-Key: $API_KEY"
Response examples (200)
[
  {
    "id": "64a1cc789f556f7ce46c576b",
    "userId": "string",
    "teamId": "string",
    "branch": "dev",
    "name": "saas project",
    "tags": [
      "saas",
      "startup"
    ],
    "createdAt": "2023-06-21T12:34:56+00:00",
    "updatedAt": "2023-06-21T12:34:56+00:00"
  }
]