Manual Change
Use this endpoint with the POST method to register manual changes.
Last updated
Was this helpful?
Was this helpful?
curl -X POST \
'https://app.sleuth.io/api/1/deployments/<ORG_SLUG>/<PROJECT_SLUG>/register_manual_deploy' \
-H 'Content-Type: application/json' \
-d '{
"name": "<NAME>",
"description": "<DESCRIPTION>",
"api_key": <API_KEY>
}'Invoke-RestMethod -Method POST `
-Uri 'https://app.sleuth.io/api/1/deployments/<ORG_SLUG>/<PROJECT_SLUG>/register_manual_deploy' `
-Headers @{
'Authorization' = 'apikey <APIKEY>'
'Content-Type' = 'application/json'
} `
-Body '{
"name": "<NAME>",
"description": "<description>"
}'Invoke-RestMethod -Method POST `
-Uri 'https://app.sleuth.io/api/1/deployments/<ORG_SLUG>/<PROJECT_SLUG>/register_manual_deploy' `
-Headers @{
'Content-Type' = 'application/json'
} `
-Body '{
"api_key": "<API_KEY>",
"name": "<NAME>",
"description": "<DESCRIPTION>"
}'