docs: update API authentication method in auto-deploy documentation

This commit is contained in:
Mauricio Siu
2025-07-29 01:03:03 -06:00
parent abc31509a3
commit 48dfda0aba

View File

@@ -89,7 +89,7 @@ Steps:
curl -X 'GET' \
'https://your-domain/api/project.all' \
-H 'accept: application/json'
-H 'Authorization: Bearer <token>'
-H 'x-api-key: <token>'
```
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 <token>' \
-H 'x-api-key: <token>' \
-d '{
"applicationId": "string"
}'