rozod
    Preparing search index...

    Variable getCloudV2UniversesUniverseIdSecretsConst Api Param Description

    getCloudV2UniversesUniverseIdSecrets: EndpointGeneric<
        { cursor?: string; limit?: number; universeId: number },
        {
            nextPageCursor: null | string;
            previousPageCursor: null | string;
            secrets:
                | null
                | {
                    create_time: null
                    | string;
                    domain: null | string;
                    id: null | string;
                    key_id: null | string;
                    secret: null | string;
                    update_time: null | string;
                }[];
        },
        undefined,
    > = ...

    GET https://apis.roblox.com/cloud/cloud/v2/universes/:universeId/secrets List Secrets universeId The universe ID limit Number of secrets to return per page (1-500, default 10) cursor Pagination cursor from previous response Lists all secrets defined for a universe. Secret content is not returned for security reasons - only metadata such as ID, domain, creation and update timestamps are included.

    Only the owner of the universe can list secrets. For group-owned universes, only the group owner or authorized members can list secrets.