NodeRingsDocs

Create Platform

POST
/v1/platform
Authorization<token>

Bearer token

In: header

X-Organization-ID<token>

Tenant or organization identifier

In: header

name?string
endpointUrl?string
driver?string

Deprecated: driver lives on the organization. Ignored if set; rejected on mismatch.

Default"PLATFORM_DRIVER_UNSPECIFIED"
Value in"PLATFORM_DRIVER_UNSPECIFIED" | "PLATFORM_DRIVER_PROXMOX" | "PLATFORM_DRIVER_VIRTFUSION" | "PLATFORM_DRIVER_SOLUSVM"
agentId?string
assignCustomerIpv6?boolean

VirtFusion/SolusVM only. Rejected when the org driver is Proxmox.

Response Body

application/json

curl -X POST "https://api.noderings.com/v1/platform" \  -H "Authorization: Bearer {your_token}" \  -H "X-Organization-ID: {your_org_id}" \  -H "Content-Type: application/json" \  -d '{  "name": "string",  "endpointUrl": "string",  "driver": "PLATFORM_DRIVER_UNSPECIFIED",  "agentId": "string",  "assignCustomerIpv6": false}'
{
  "success": true
}