Skip to main content
POST
/
projects
/
{project_id}
/
services
/
{service_id}
/
detachFromVPC
Detach Service from VPC
curl --request POST \
  --url https://console.cloud.timescale.com/public/api/v1/projects/{project_id}/services/{service_id}/detachFromVPC \
  --header 'Content-Type: application/json' \
  --data '{
  "vpc_id": "1234567890"
}'
{
  "message": "Action completed successfully."
}

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
vpc_id
string
required

The ID of the VPC to attach the service to.

Example:

"1234567890"

Response

The action was completed successfully.

message
string
Example:

"Action completed successfully."