KarloK
ZITADEL5mo ago
16 replies
Karlo

Zitadel v2beta API – ListOrganizationMetadata returns 404

Description:
We are integrating Zitadel v2 beta APIs and encountered issues with the ListOrganizationMetadata endpoint.
The call consistently returns 404 Not Found.

Environment:
• Zitadel version: v3.4.1
• Endpoint: https://xxx.dev.com/zitadel.org.v2beta.OrganizationService/ListOrganizationMetadata

Request Example:
{
    "organizationId": "<org-id>",
    "pagination": {
        "limit": 100,
        "asc": true
    },
    "filter": [
        {
            "keyQuery": {
                "key": "testValue",
                "method": "TEXT_QUERY_METHOD_EQUALS"
            }
        }
    ]
}


Response:
{
  "code": 5,
  "message": "Not Found"
}


Expected Result:
List of organization metadata matching the provided query.

Actual Result:
404 Not Found error returned every time.

Request:
Can you please check if this is an issue with the endpoint availability or if we are calling it incorrectly?


EDIT:
- updated main body with initial call json
Was this page helpful?