Help Center> Domain Name Service> API Reference> APIs> PTR Record Management> Modifying the PTR Record of an EIP
Updated on 2024-03-25 GMT+08:00

Modifying the PTR Record of an EIP

Function

This API is used to modify the PTR record of an EIP.

Calling Method

For details, see Calling APIs.

URI

PATCH /v2/reverse/floatingips/{region}:{floatingip_id}

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

region

Yes

String

Region of the zone

floatingip_id

Yes

String

ID of the PTR record to be modified

Request Parameters

Table 2 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

User token. It can be obtained by calling an IAM API. The value of X-Subject-Token in the response header is the user token.

Table 3 Request body parameters

Parameter

Mandatory

Type

Description

ptrdname

Yes

String

Domain name of the PTR record

description

No

String

PTR record description

ttl

No

Integer

Record set caching duration (in seconds) on a local DNS server. The longer the duration is, the slower the update takes effect.

tags

No

Array of tag objects

Resource tag

Table 4 tag

Parameter

Mandatory

Type

Description

key

Yes

String

Tag key. A key can contain up to 36 Unicode characters. It cannot be left blank. A tag value cannot contain special characters (=*<>,|/) or start or end with spaces.

value

No

String

Tag value. A tag value contains a maximum of 43 Unicode characters and can be left blank. A tag value cannot contain special characters (=*<>,|/) or start or end with spaces.

Response Parameters

Status code: 200

Table 5 Response body parameters

Parameter

Type

Description

id

String

PTR record ID, which is in {region}:{floatingip_id} format

ptrdname

String

Domain name of the PTR record

description

String

PTR record description

ttl

Integer

Record set caching duration (in seconds) on a local DNS server. The longer the duration is, the slower the update takes effect.

address

String

EIP

status

String

Resource status

action

String

Requested operation on the resource.

Value options: CREATE, UPDATE, DELETE, NONE, CREATE, UPDATE, and DELETE

NONE: No operation will be performed.

links

pageLink object

Link of the current resource or other related resources. When a response is broken into pages, a next link is provided to retrieve all results.

Example Requests

Modifying the domain name and description of the PTR record and set the TTL to 300s

PATCH https://{endpoint}/v2/reverse/floatingips/{region}:{floatingip_id}

{
  "ptrdname" : "www.example.com",
  "description" : "Description for this PTR record",
  "ttl" : 300
}

Example Responses

Status code: 200

Response to the request for modifying the PTR record of an EIP

{
  "id" : "region_id:c5504932-bf23-4171-b655-b87a6bc59334",
  "ptrdname" : "www.example.com.",
  "description" : "Description for this PTR record",
  "address" : "10.154.52.138",
  "action" : "CREATE",
  "ttl" : 300,
  "status" : "PENDING_CREATE",
  "links" : {
    "self" : "https://Endpoint/v2/reverse/floatingips/region_id:c5504932-bf23-4171-b655-b87a6bc59334"
  }
}

Status Codes

Status Code

Description

200

Response to the request for modifying the PTR record of an EIP

Error Codes

See Error Codes.