> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt # GetSecretValue # Package: secrets # Namespace: SecretsVaultService # Method link: https://dev.wix.com/docs/api-reference/business-management/secrets/get-secret-value.md ## Permission Scopes: Manage Secrets: SCOPE.VELO.MANAGE_SECRETS ## Introduction Retrieves a secret value by name.
__Caution:__ Only use a secret's value in the backend code. Returning the secret value in the frontend is a security risk.--- ## REST API ### Schema ``` Method: getSecretValue Description: Retrieves a secret value by name.
__Caution:__ Only use a secret's value in the backend code. Returning the secret value in the frontend is a security risk.URL: https://www.wixapis.com/api/v1/secrets/name/{name} Method: GET # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: name Method parameters: param name: name | type: none | required: true Return type: GetSecretValueResponse - name: value | type: string | description: The confidential value to protect, such as an API key. ``` ### Examples ### GetSecretValue ```curl ~~~cURL curl -X GET 'https://www.wixapis.com/_api/cloud-secrets-vault-server/api/v1/secrets/name/secret_key' \ -H 'Content-Type: application/json' \ -H 'Authorization:
__Caution:__ Only use a secret's value in the backend code. Returning the secret value in the frontend is a security risk.# Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present. Required parameters: name Method parameters: param name: name | type: string | description: The name of the secret to get the value of. | required: true Return type: PROMISE