v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
FQDNs

Update an FQDN

Update the details of a specific FQDN.

patch/fqdns/{id}

Path parameters

idstring required
Example:1517907029795014409

Identifies the resource.

Request body

connection_idstring

ID of the FQDN connection to which this IP should be attached.

dns_record_typestring

The DNS record type for the FQDN. For cases where a port is not set, the DNS record type must be 'srv'. For cases where a port is set, the DNS record type must be 'a'. If the DNS record type is 'a' and a port is not specified, 5060 will be used.

fqdnstring

FQDN represented by this resource.

portinteger nullable

Port to use when connecting to this FQDN.

Example request

{
  "connection_id": "1516447646313612565",
  "dns_record_type": "a",
  "fqdn": "example.com",
  "port": 8080
}

Response

Successful response with details about an FQDN connection.

Example response

{
  "data": {
    "connection_id": "1516447646313612565",
    "created_at": "2018-02-02T22:25:27.521Z",
    "dns_record_type": "a",
    "fqdn": "example.com",
    "id": "1293384261075731499",
    "port": 5060,
    "record_type": "fqdn",
    "updated_at": "2018-02-02T22:25:27.521Z"
  }
}