rozod
    Preparing search index...

    Variable getCloudV2UniversesUniverseIdSecretsPublicKeyConst Api Param Description

    getCloudV2UniversesUniverseIdSecretsPublicKey: EndpointGeneric<
        { universeId: number },
        {
            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/public-key Get Public Key universeId The universe ID Retrieves the public key for a universe. You need this key to encrypt secret content before sending it to Roblox.

    Only the owner of the universe can retrieve the public key. For group-owned universes, only the group owner or authorized members can retrieve the public key.

    The secret id field is static and always returns "public-key".

    The returned public key in the secret field is universe-specific and derived from a master key using the universe ID. Use this key with LibSodium sealed box encryption to encrypt your secret content before creating or updating secrets.

    Include the key_id from the public key response in the request to create or update a secret.