Skip to content

Update Service Password

POST/projects/{project_id}/services/{service_id}/updatePassword

Sets a new master password for the service within a project.

Path ParametersExpand Collapse
project_id: string
service_id: string
Body ParametersJSONExpand Collapse
password: string

The new password.

formatpassword

Update Service Password

curl http://localhost:8080/projects/$PROJECT_ID/services/$SERVICE_ID/updatePassword \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $TIGER_CLOUD_API_KEY" \
    -d '{
          "password": "a-very-secure-new-password"
        }'
Returns Examples