Skip to main content
POST
/
projects
/
{project_id}
/
services
/
{service_id}
/
updatePassword
Update Service Password
curl --request POST \
  --url https://console.cloud.timescale.com/public/api/v1/projects/{project_id}/services/{service_id}/updatePassword \
  --header 'Content-Type: application/json' \
  --data '{
  "password": "a-very-secure-new-password"
}'
This response does not have an example.

Path Parameters

project_id
string
required

The unique identifier of the project.

Example:

"rp1pz7uyae"

service_id
string
required

The unique identifier of the service.

Example:

"d1k5vk7hf2"

Body

application/json
password
string<password>
required

The new password.

Example:

"a-very-secure-new-password"

Response

Password updated successfully. No content returned.