Skip to main content
POST
/
projects
/
{project_id}
/
services
/
{service_id}
/
resize
Resize a Service
curl --request POST \
  --url https://console.cloud.timescale.com/public/api/v1/projects/{project_id}/services/{service_id}/resize \
  --header 'Content-Type: application/json' \
  --data '{
  "cpu_millis": 1000,
  "memory_gbs": 4,
  "nodes": 2
}'
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
cpu_millis
integer
required

The new CPU allocation in milli-cores (e.g., 1000 for 1 vCPU).

Example:

1000

memory_gbs
integer
required

The new memory allocation in gigabytes.

Example:

4

nodes
integer

The new number of nodes in the replica set.

Example:

2

Response

Resize request has been accepted and is in progress.