From 48dfda0aba67b551e6e9f3d627b8b2c00058bdfe Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Tue, 29 Jul 2025 01:03:03 -0600 Subject: [PATCH] docs: update API authentication method in auto-deploy documentation --- apps/docs/content/docs/core/auto-deploy.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/docs/content/docs/core/auto-deploy.mdx b/apps/docs/content/docs/core/auto-deploy.mdx index 3635d66..630e2f4 100644 --- a/apps/docs/content/docs/core/auto-deploy.mdx +++ b/apps/docs/content/docs/core/auto-deploy.mdx @@ -89,7 +89,7 @@ Steps: curl -X 'GET' \ 'https://your-domain/api/project.all' \ -H 'accept: application/json' - -H 'Authorization: Bearer ' + -H 'x-api-key: ' ``` This command lists all projects and services. Identify the applicationId for the application you wish to deploy. @@ -101,7 +101,7 @@ curl -X 'POST' \ 'https://your-domain/api/application.deploy' \ -H 'accept: application/json' \ -H 'Content-Type: application/json' \ - -H 'Authorization: Bearer ' \ + -H 'x-api-key: ' \ -d '{ "applicationId": "string" }'