{
"info": {
"_postman_id": "071f92c0-1713-408f-96ca-6fb815f54946",
"name": "Managed Database for PostgreSQL and MySQL Access Control List Nodes API",
"description": "Managed Database for PostgreSQL and MySQL provides fully-managed relational Database Instances, with MySQL or PostgreSQL as database engines. The resource allows you to focus on development rather than administration or configuration. It comes with a high-availability mode, data replication, and automatic backups.\n\nCompared to traditional database management, which requires customers to provide their infrastructure and resources to manage their databases, Managed Database for PostgreSQL and MySQL Instance offers the user access to Database Instances without setting up the hardware or configuring the software. Scaleway handles the provisioning, manages the configuration, and provides useful features as high availability, automated backup, user management, and more.\n\n\n\n\n## Concepts\n\nRefer to our [dedicated concepts page](https://www.scaleway.com/en/docs/managed-databases-for-postgresql-and-mysql/concepts/) to find definitions of the different terms referring to Managed Database for PostgreSQL and MySQL.\n\n\n\n\n## Quickstart\n\n1. Configure your environment variables.\n \n This is an optional step that seeks to simplify your usage of the APIs.\n \n\n ```bash\n export SCW_ACCESS_KEY=\"\"\n export SCW_SECRET_KEY=\"\"\n export SCW_REGION=\"\"\n ```\n2. Edit the POST request payload you will use to create your Database Instance. Replace the parameters in the following example:\n ```json\n '{\n \"project_id\": \"d8e65f2b-cce9-40b7-80fc-6a2902db6826\",\n \"name\": \"myDB\",\n \"engine\": \"PostgreSQL-15\",\n \"tags\": [\"donnerstag\"],\n \"is_ha_cluster\": true,\n \"node_type\": \"db-pro2-xxs\",\n \"disable_backup\": false,\n \"user_name\": \"my_initial_user\",\n \"password\": \"thiZ_is_v0ry_s3cret\",\n \"volume_type\": \"sbs_5k\",\n \"volume_size\": \"30000000000\"\n }'\n ```\n\n | Parameter | Description |\n | :--------------- |:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n | `project_id` | The ID of the Project you want to create your Database Instance in. To find your Project ID you can **[list the projects](/api/account/project-api/#path-projects-list-all-projects-of-an-organization)** or consult the **[Scaleway console](https://console.scaleway.com/project/settings)**. |\n | `engine` | **REQUIRED** Version ID of the database engine. To check the list of available engines you can use the following endpoint: `https://api.scaleway.com/rdb/v1/regions/$SCW_REGION/database-engines` |\n | `name` | Name of the Database Instance |\n | `node_type` | **REQUIRED** The node type. To check the list of available node types you can use the following endpoint: `https://api.scaleway.com/rdb/v1/regions/$SCW_REGION/node-types` |\n | `is_ha_cluster` | **BOOLEAN** Defines whether High Availability is enabled for the Database Instance |\n | `disable_backup` | **BOOLEAN** Defines whether automated backups are disabled for the Database Instance |\n | `tags` | The list of tags `[\"tag1\", \"tag2\", ...]` that will be associated with the Database Instance. Tags can be appended to the query of the [List Database Instances](#path-database-instances-list-database-instances) call to show results for only the Database Instances using a specific tag. You can also combine tags to list Database Instances that possess all the appended tags. |\n | `user_name` | **REQUIRED** Identifier of the default user, which is created concurrently with the Database Instance |\n | `password` | **REQUIRED** Password for the default user |\n | `volume_type` | Type of volume where data is stored. You can specify either local volume (`lssd`) or block volume (`bssd`, `sbs_5k` or `sbs_15k`). The default value is `lssd` |\n | `volume_size` | Volume size when volume_type is `bssd`, `sbs_5k` or `sbs_15k`. The value should be expressed in bytes. For example 30GB is expressed as 30000000000 |\n3. Create a Database Instance by running the following command. Make sure you include the payload you edited in the previous step.\n ```bash\n curl -X POST \\\n -H \"X-Auth-Token: $SCW_SECRET_KEY\" \\\n \"Content-Type: application/json\" \\\n https://api.scaleway.com/rdb/v1/regions/$SCW_REGION/instances \\\n -d '{\n \"project_id\": \"d8e65f2b-cce9-40b7-80fc-6a2902db6826\",\n \"name\": \"myDB\",\n \"engine\": \"PostgreSQL-15\",\n \"tags\": [\"donnerstag\"],\n \"is_ha_cluster\": true,\n \"node_type\": \"db-pro2-xxs\",\n \"disable_backup\": false,\n \"user_name\": \"my_initial_user\",\n \"password\": \"thiZ_is_v0ry_s3cret\",\n \"volume_type\": \"sbs_5k\",\n \"volume_size\": \"30000000000\"\n }'\n ```\n4. List your Database Instances.\n ```bash\n curl -X GET \\\n -H \"Content-Type: application/json\" \\\n -H \"X-Auth-Token: $SCW_SECRET_KEY\" https://api.scaleway.com/rdb/v1/regions/$SCW_REGION/instances\n ```\n\n You should get a response like the following:\n\n \n This is a response example, the UUIDs and IP address displayed are not real.\n \n\n ```json\n {\n \"id\": \"f5122f66-fb50-4cef-aa02-487ef4fc1af0\",\n \"name\": \"myDB\",\n \"organization_id\": \"895693aa-3915-4896-8761-c2923b008be7\",\n \"project_id\": \"d8e65f2b-cce9-40b7-80fc-6a2902db6826\",\n \"status\": \"ready\",\n \"engine\": \"PostgreSQL-15\",\n \"endpoint\": {\n \"ip\": \"198.51.100.0\",\n \"port\": 22245,\n \"name\": null\n },\n \"tags\": [\n \"donnerstag\"\n ],\n \"settings\": [],\n \"backup_schedule\": {\n \"frequency\": 24,\n \"retention\": 7,\n \"disabled\": true\n },\n \"is_ha_cluster\": true,\n \"read_replicas\": [],\n \"node_type\": \"db-pro2-xxs\",\n \"volume\": {\n \"type\": \"sbs_5k\",\n \"size\": 30000000000\n }\n \"created_at\": \"2019-04-19T16:24:52.591417Z\",\n \"region\": \"fr-par\"\n }\n ```\n5. Retrieve your Database Instance IP and port from the response.\n \n In the example above, the IP and port are `198.51.100.0` and `22245`, respectively.\n \n6. Connect to your Database Instance with the database client of the engine you selected.\n For MySQL, run the following command:\n ```bash\n mysql -h --port -p -u \n ```\n\n For PostgreSQL, run:\n ```bash\n psql -h -p -U -d rdb\n ```\n\n For the recurring example, the command would look like:\n\n ```bash\n psql -h 198.51.100.0 -p 22245 -U my_initial_user -d rdb\n ```\n7. Enter the database password that you defined upon creation.\n\nYou are now connected to your Managed Database.\n\n\n\nTo perform the following steps, you must first ensure that:\n - you have an account and are logged into the [Scaleway console](https://console.scaleway.com/organization)\n - you have created an [API key](https://www.scaleway.com/en/docs/iam/how-to/create-api-keys/) and that the API key has sufficient [IAM permissions](https://www.scaleway.com/en/docs/iam/reference-content/permission-sets/) to perform the actions described on this page.\n - you have [installed `curl`](https://curl.se/download.html)\n\n\n\n## Technical Information\n\n### Regions\n\nScaleway's infrastructure is spread across different [regions and Availability Zones](https://www.scaleway.com/en/docs/account/reference-content/products-availability/).\n\nManaged Database for PostgreSQL and MySQL is available in the Paris, Amsterdam and Warsaw regions, which are represented by the following path parameters:\n\n- `fr-par`\n- `nl-ams`\n- `pl-waw`\n\n### PostgreSQL specifications\n\n#### Versions\n\nScaleway Database for PostgreSQL supports PostgreSQL versions 11, 12, 13, 14 and 15.\n\n#### System\n\nDifferent modules are available for installation, including TimescaleDB and PostGIS. Refer to the [Managed Database for PostgreSQL and MySQL FAQ page](https://www.scaleway.com/en/docs/managed-databases-for-postgresql-and-mysql/faq/#which-postgresql-extensions-are-available) for an extensive list of PostgreSQL extensions.\n\n#### Database Management\n\nYou can create logical databases through the Scaleway console, the Scaleway APIs or SQL.\n\n- databases created using the Scaleway console or the API are owned by an internal system user. These are called \"managed databases\".\n- databases created using SQL will be owned by the creator. These are called \"unmanaged databases\".\n\n### MySQL specifications\n\n#### Versions\n\nScaleway Database for MySQL supports MySQL 8.\n\n#### System\n\n- only the [InnoDB engine](https://dev.mysql.com/doc/refman/8.0/en/innodb-storage-engine.html) is supported\n- the [Global Transaction Identifier (GTID)](https://dev.mysql.com/doc/refman/8.0/en/replication-gtids-concepts.html) is enabled.\n- [`mysql_native_password`](https://dev.mysql.com/doc/refman/8.0/en/native-pluggable-authentication.html) (default) and [`caching_sha2_password`](https://dev.mysql.com/doc/refman/8.0/en/caching-sha2-pluggable-authentication.html) authentication are supported.\n\n#### User Management\n\n- users with an `admin` role have access to all logical databases and can create new ones.\n- users created via the API are authenticated using the default authentication plugin, which can be changed in the settings.\n\n## Technical Limitations\n\n### PostgreSQL\n\n#### User Management\n\n- users with an `admin` role have `CREATEROLE` and `CREATEDB` privileges.\n- users do NOT have `SUPERUSER` nor `REPLICATION` privileges.\n- permission management through the Scaleway console or API is only possible for the \"managed databases\".\n\n#### Backup and restoration\n\nDatabases that have been backed up and then restored retain the user permission settings in use at the time of backup. If you delete users after backup and then restore your backup in the same database, or if you restore a backup to a different database with different or no users, the permissions configured for them continue to exist, but with no associated owner. This error will put a stop to the restoration process.\n\nTo avoid this issue, we recommend you re-create the users you deleted. In the occasion you restore the backup to a new database, you must create new users with the same names.\n\n## Going Further\n\nFor more information about Managed Database for PostgreSQL and MySQL, you can check out the following pages:\n\n* [Managed Database for PostgreSQL and MySQL Documentation](https://www.scaleway.com/en/docs/managed-databases/postgresql-and-mysql/)\n* [Managed Database for PostgreSQL and MySQL FAQ](https://www.scaleway.com/en/docs/managed-databases-for-postgresql-and-mysql/faq/)\n* [Scaleway Slack Community](https://scaleway-community.slack.com/) join the #database channel\n* [Contact our support team](https://console.scaleway.com/support/tickets)\n\n### How to migrate a database\n\nIf you wish to migrate existing databases to a Managed Database for PostgreSQL or MySQL, you can refer to the [Migrating existing databases to a Database Instance](https://www.scaleway.com/en/docs/tutorials/migrate-databases-instance/) tutorial page.\n\n### Troubleshoooting\n\n#### Disk full status\n\nIf your Database Instance uses local storage, your local volume might eventually approach full capacity and shift to `disk_full` mode. This mode grants you enough space to either [upgrade your node type](https://www.scaleway.com/en/docs/managed-databases-for-postgresql-and-mysql/how-to/upgrade-version/#how-to-change-the-node-type) or [clear out space in your volume](https://www.scaleway.com/en/docs/managed-databases-for-postgresql-and-mysql/troubleshooting/disk-full/).",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"lastUpdatedBy": "35240",
"uid": "35240-071f92c0-1713-408f-96ca-6fb815f54946"
},
"item": [
{
"name": "k8s",
"item": [
{
"name": "v1",
"item": [
{
"name": "regions",
"item": [
{
"name": "{region}",
"item": [
{
"name": "clusters",
"item": [
{
"name": "{cluster_id}",
"item": [
{
"name": "nodes",
"item": [
{
"name": "List Nodes in a Cluster",
"id": "656ed72a-073a-4fb9-8ae6-846a49f7fe97",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "key",
"value": "X-Auth-Token",
"type": "string"
},
{
"key": "value",
"value": "{{apiKey}}",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/k8s/v1/regions/:region/clusters/:cluster_id/nodes?pool_id=&order_by=created_at_asc&page=&page_size=&name=&status=unknown",
"host": [
"{{baseUrl}}"
],
"path": [
"k8s",
"v1",
"regions",
":region",
"clusters",
":cluster_id",
"nodes"
],
"query": [
{
"description": "Pool ID on which to filter the returned nodes.",
"key": "pool_id",
"value": ""
},
{
"description": "Sort order of the returned nodes.",
"key": "order_by",
"value": "created_at_asc"
},
{
"description": "Page number for the returned nodes.",
"key": "page",
"value": ""
},
{
"description": "Maximum number of nodes per page.",
"key": "page_size",
"value": ""
},
{
"description": "Name to filter on, only nodes containing this substring in their name will be returned.",
"key": "name",
"value": ""
},
{
"description": "Status to filter on, only nodes with this status will be returned.",
"key": "status",
"value": "unknown"
}
],
"variable": [
{
"id": "b9c57ba8-d3d5-4464-9df3-a415e959bdd5",
"key": "region",
"value": "fr-par",
"description": "(Required) The region you want to target"
},
{
"id": "da19b092-ca9c-4e46-91b9-c9b95e7a0133",
"key": "cluster_id",
"value": "",
"description": "(Required) Cluster ID from which the nodes will be listed from."
}
]
},
"description": "List all the existing nodes for a specific Kubernetes cluster."
},
"response": [
{
"id": "1619b15a-96e1-44f2-b9c7-b68049c96c88",
"name": "New Response",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "X-Auth-Token",
"value": ""
}
],
"url": {
"raw": "{{baseUrl}}/k8s/v1/regions/:region/clusters/:cluster_id/nodes?pool_id=&order_by=created_at_asc&page=&page_size=&name=&status=unknown",
"host": [
"{{baseUrl}}"
],
"path": [
"k8s",
"v1",
"regions",
":region",
"clusters",
":cluster_id",
"nodes"
],
"query": [
{
"description": "Pool ID on which to filter the returned nodes.",
"key": "pool_id",
"value": ""
},
{
"description": "Sort order of the returned nodes.",
"key": "order_by",
"value": "created_at_asc"
},
{
"description": "Page number for the returned nodes.",
"key": "page",
"value": ""
},
{
"description": "Maximum number of nodes per page.",
"key": "page_size",
"value": ""
},
{
"description": "Name to filter on, only nodes containing this substring in their name will be returned.",
"key": "name",
"value": ""
},
{
"description": "Status to filter on, only nodes with this status will be returned.",
"key": "status",
"value": "unknown"
}
],
"variable": [
{
"key": "region"
},
{
"key": "cluster_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"responseTime": null,
"body": "{\n \"total_count\": \"\",\n \"nodes\": [\n {\n \"id\": \"\",\n \"pool_id\": \"\",\n \"cluster_id\": \"\",\n \"provider_id\": \"\",\n \"region\": \"\",\n \"name\": \"\",\n \"status\": \"unknown\",\n \"error_message\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\"\n },\n {\n \"id\": \"\",\n \"pool_id\": \"\",\n \"cluster_id\": \"\",\n \"provider_id\": \"\",\n \"region\": \"\",\n \"name\": \"\",\n \"status\": \"unknown\",\n \"error_message\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\"\n }\n ]\n}",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-1619b15a-96e1-44f2-b9c7-b68049c96c88"
}
],
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-656ed72a-073a-4fb9-8ae6-846a49f7fe97"
}
],
"id": "b48c19de-62b9-4ac9-8dfe-d2ebb05955b9",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-b48c19de-62b9-4ac9-8dfe-d2ebb05955b9"
}
],
"id": "8b60b9ae-afa5-4d74-956f-04ff4ea2e042",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-8b60b9ae-afa5-4d74-956f-04ff4ea2e042"
}
],
"id": "ac4699c8-3d7b-46fc-a33d-914d731d649d",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-ac4699c8-3d7b-46fc-a33d-914d731d649d"
},
{
"name": "nodes",
"item": [
{
"name": "{node_id}",
"item": [
{
"name": "reboot",
"item": [
{
"name": "Reboot a Node in a Cluster",
"id": "12f58f76-1ff4-46f6-8391-c078beedf7b9",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "key",
"value": "X-Auth-Token",
"type": "string"
},
{
"key": "value",
"value": "{{apiKey}}",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/k8s/v1/regions/:region/nodes/:node_id/reboot",
"host": [
"{{baseUrl}}"
],
"path": [
"k8s",
"v1",
"regions",
":region",
"nodes",
":node_id",
"reboot"
],
"variable": [
{
"id": "c93d95dc-37f2-47eb-899d-d9d07cc8b450",
"key": "region",
"value": "fr-par",
"description": "(Required) The region you want to target"
},
{
"id": "ba1abcde-a83f-4ac6-bf74-96cdf0ca2eb6",
"key": "node_id",
"value": "",
"description": "(Required) ID of the node to reboot."
}
]
},
"description": "Reboot a specific Node. The node will first be drained and pods will be rescheduled onto another node. Note that when there is not enough space to reschedule all the pods (such as in a one-node cluster, or with specific constraints), disruption of your applications may occur."
},
"response": [
{
"id": "c6e6c120-4789-43bb-a3d6-b82330c9778b",
"name": "New Response",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "X-Auth-Token",
"value": ""
}
],
"body": {
"mode": "raw",
"raw": "{}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/k8s/v1/regions/:region/nodes/:node_id/reboot",
"host": [
"{{baseUrl}}"
],
"path": [
"k8s",
"v1",
"regions",
":region",
"nodes",
":node_id",
"reboot"
],
"variable": [
{
"key": "region"
},
{
"key": "node_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"responseTime": null,
"body": "{\n \"id\": \"\",\n \"pool_id\": \"\",\n \"cluster_id\": \"\",\n \"provider_id\": \"\",\n \"region\": \"\",\n \"name\": \"\",\n \"status\": \"unknown\",\n \"error_message\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\"\n}",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-c6e6c120-4789-43bb-a3d6-b82330c9778b"
}
],
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-12f58f76-1ff4-46f6-8391-c078beedf7b9"
}
],
"id": "eaa6b608-f41c-4de9-9899-d57ccfd685e5",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-eaa6b608-f41c-4de9-9899-d57ccfd685e5"
},
{
"name": "Get a Node in a Cluster",
"id": "1d41dcdd-24b0-4399-a9c5-c13bc4044f23",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "key",
"value": "X-Auth-Token",
"type": "string"
},
{
"key": "value",
"value": "{{apiKey}}",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": "string"
}
]
},
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/k8s/v1/regions/:region/nodes/:node_id",
"host": [
"{{baseUrl}}"
],
"path": [
"k8s",
"v1",
"regions",
":region",
"nodes",
":node_id"
],
"variable": [
{
"id": "a8222340-e9ae-4e17-817a-755a03c9709d",
"key": "region",
"value": "fr-par",
"description": "(Required) The region you want to target"
},
{
"id": "bfd57113-35e0-4b07-abb1-2984f4b13668",
"key": "node_id",
"value": "",
"description": "(Required) ID of the requested node."
}
]
},
"description": "Retrieve details about a specific Kubernetes Node."
},
"response": [
{
"id": "4b450fd8-2305-4101-8102-b64ca41b2ebb",
"name": "New Response",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "X-Auth-Token",
"value": ""
}
],
"url": {
"raw": "{{baseUrl}}/k8s/v1/regions/:region/nodes/:node_id",
"host": [
"{{baseUrl}}"
],
"path": [
"k8s",
"v1",
"regions",
":region",
"nodes",
":node_id"
],
"variable": [
{
"key": "region"
},
{
"key": "node_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"responseTime": null,
"body": "{\n \"id\": \"\",\n \"pool_id\": \"\",\n \"cluster_id\": \"\",\n \"provider_id\": \"\",\n \"region\": \"\",\n \"name\": \"\",\n \"status\": \"unknown\",\n \"error_message\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\"\n}",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-4b450fd8-2305-4101-8102-b64ca41b2ebb"
}
],
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-1d41dcdd-24b0-4399-a9c5-c13bc4044f23"
},
{
"name": "Delete a Node in a Cluster",
"id": "1d1157bf-b7b5-4c77-81bc-655ebe96f015",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "key",
"value": "X-Auth-Token",
"type": "string"
},
{
"key": "value",
"value": "{{apiKey}}",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": "string"
}
]
},
"method": "DELETE",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/k8s/v1/regions/:region/nodes/:node_id?skip_drain=",
"host": [
"{{baseUrl}}"
],
"path": [
"k8s",
"v1",
"regions",
":region",
"nodes",
":node_id"
],
"query": [
{
"description": "(Required) Skip draining node from its workload (Note: this parameter is currently inactive).",
"key": "skip_drain",
"value": ""
}
],
"variable": [
{
"id": "823d2393-3d03-4b66-bb04-44f1375d2581",
"key": "region",
"value": "fr-par",
"description": "(Required) The region you want to target"
},
{
"id": "168c25fc-034b-442a-bf69-688fa74babe1",
"key": "node_id",
"value": "",
"description": "(Required) ID of the node to replace."
}
]
},
"description": "Delete a specific Node. The node will first be drained and pods will be rescheduled onto another node. Note that when there is not enough space to reschedule all the pods (such as in a one-node cluster, or with specific constraints), disruption of your applications may occur."
},
"response": [
{
"id": "e7450eb3-45e0-45c6-a8e0-d04c7513a507",
"name": "New Response",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "X-Auth-Token",
"value": ""
}
],
"url": {
"raw": "{{baseUrl}}/k8s/v1/regions/:region/nodes/:node_id?skip_drain=",
"host": [
"{{baseUrl}}"
],
"path": [
"k8s",
"v1",
"regions",
":region",
"nodes",
":node_id"
],
"query": [
{
"description": "(Required) Skip draining node from its workload (Note: this parameter is currently inactive).",
"key": "skip_drain",
"value": ""
}
],
"variable": [
{
"key": "region"
},
{
"key": "node_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"responseTime": null,
"body": "{\n \"id\": \"\",\n \"pool_id\": \"\",\n \"cluster_id\": \"\",\n \"provider_id\": \"\",\n \"region\": \"\",\n \"name\": \"\",\n \"status\": \"unknown\",\n \"error_message\": \"\",\n \"created_at\": \"\",\n \"updated_at\": \"\"\n}",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-e7450eb3-45e0-45c6-a8e0-d04c7513a507"
}
],
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-1d1157bf-b7b5-4c77-81bc-655ebe96f015"
}
],
"id": "10c29e35-7433-4905-ba84-e556d9bf4ac8",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-10c29e35-7433-4905-ba84-e556d9bf4ac8"
}
],
"id": "6b9134ab-7570-46b4-8a35-53bfb195ada5",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-6b9134ab-7570-46b4-8a35-53bfb195ada5"
},
{
"name": "pools",
"item": [
{
"name": "{pool_id}",
"item": [
{
"name": "external-nodes",
"item": [
{
"name": "Create a Kosmos node",
"id": "da73dd39-b350-4d5d-9d8f-bafd9a9919e1",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "apikey",
"apikey": [
{
"key": "key",
"value": "X-Auth-Token",
"type": "string"
},
{
"key": "value",
"value": "{{apiKey}}",
"type": "string"
},
{
"key": "in",
"value": "header",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/k8s/v1/regions/:region/pools/:pool_id/external-nodes",
"host": [
"{{baseUrl}}"
],
"path": [
"k8s",
"v1",
"regions",
":region",
"pools",
":pool_id",
"external-nodes"
],
"variable": [
{
"id": "ed26be7d-61e5-46b7-9504-6be1ce620935",
"key": "region",
"value": "fr-par",
"description": "(Required) The region you want to target"
},
{
"id": "c129096a-2920-48d5-a5dc-c07a1ad5f9fd",
"key": "pool_id",
"value": "",
"description": "(Required) "
}
]
},
"description": "Retrieve metadata for a Kosmos node. This method is not intended to be called by end users but rather programmatically by the kapsule-node-agent."
},
"response": [
{
"id": "0777b2b7-cf20-4ff7-8bdb-d1acdb825ffb",
"name": "New Response",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"description": "Added as a part of security scheme: apikey",
"key": "X-Auth-Token",
"value": ""
}
],
"body": {
"mode": "raw",
"raw": "{}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/k8s/v1/regions/:region/pools/:pool_id/external-nodes",
"host": [
"{{baseUrl}}"
],
"path": [
"k8s",
"v1",
"regions",
":region",
"pools",
":pool_id",
"external-nodes"
],
"variable": [
{
"key": "region"
},
{
"key": "pool_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"responseTime": null,
"body": "{\n \"id\": \"\",\n \"name\": \"\",\n \"cluster_url\": \"\",\n \"pool_version\": \"\",\n \"cluster_ca\": \"\",\n \"kube_token\": \"\",\n \"kubelet_config\": \"\",\n \"external_ip\": \"\",\n \"containerd_version\": \"\",\n \"runc_version\": \"\",\n \"cni_plugins_version\": \"\",\n \"node_labels\": {\n \"\": \"\",\n \"do_bae\": 70602780.06690618\n },\n \"node_taints\": [\n {\n \"key\": \"\",\n \"value\": \"\",\n \"effect\": \"\"\n },\n {\n \"key\": \"\",\n \"value\": \"\",\n \"effect\": \"\"\n }\n ],\n \"iam_token\": \"\"\n}",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-0777b2b7-cf20-4ff7-8bdb-d1acdb825ffb"
}
],
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-da73dd39-b350-4d5d-9d8f-bafd9a9919e1"
}
],
"id": "27d8c262-ff95-4885-9d9e-a09c23d1c5ba",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-27d8c262-ff95-4885-9d9e-a09c23d1c5ba"
}
],
"id": "8bd5e43e-a2b6-44f5-81bc-949327163c88",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-8bd5e43e-a2b6-44f5-81bc-949327163c88"
}
],
"id": "2159c61f-c33f-4124-8d99-f796310e96ad",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-2159c61f-c33f-4124-8d99-f796310e96ad"
}
],
"id": "ac7adee2-f6f7-41fd-944a-990120587ef4",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-ac7adee2-f6f7-41fd-944a-990120587ef4"
}
],
"id": "3caf8845-dd51-4ead-bb79-5e1028c923a4",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-3caf8845-dd51-4ead-bb79-5e1028c923a4"
}
],
"id": "f68bd546-0ae9-4a8c-9870-bbcec4edba26",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-f68bd546-0ae9-4a8c-9870-bbcec4edba26"
}
],
"id": "0ac96f66-3d0b-4f8a-959f-91c63176fabb",
"createdAt": "2026-07-28T02:52:57.000Z",
"updatedAt": "2026-07-28T02:52:57.000Z",
"uid": "35240-0ac96f66-3d0b-4f8a-959f-91c63176fabb"
}
],
"variable": [
{
"key": "baseUrl",
"value": "https://api.scaleway.com"
}
]
}