ZITADEL Docs
APIsCore ResourcesV1Organization Objects

ListProjects

Search Project

Deprecated: use project v2 service ListProjects instead.

Lists projects my organization is the owner of (no granted projects). A Project is a vessel for different applications sharing the same role context.

POST
/projects/_search

Request Body

application/json

query?

list limitations and ordering

queries?

criteria the client is looking for

[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://loading/projects/_search" \  -H "Content-Type: application/json" \  -d '{}'
{
  "details": {
    "totalResult": 0,
    "processedSequence": 0,
    "viewTimestamp": "1s"
  },
  "result": [
    {
      "id": "string",
      "details": {
        "sequence": 0,
        "creationDate": "1s",
        "changeDate": "1s",
        "resourceOwner": "string"
      },
      "name": "string",
      "state": "PROJECT_STATE_UNSPECIFIED",
      "projectRoleAssertion": true,
      "projectRoleCheck": true,
      "hasProjectCheck": true,
      "privateLabelingSetting": "PRIVATE_LABELING_SETTING_UNSPECIFIED"
    }
  ]
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?