Skip to main content
POST
/
tenant
/
{tenant_name}
/
dia
Request a Gate VI
curl --request POST \
  --url https://api.example.com/tenant/{tenant_name}/dia \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "system_name": "<string>",
  "name": "<string>",
  "ipsec_service": true,
  "nat_service": true,
  "snat_service": true,
  "shared": true,
  "ipv4_prefix_length": 123,
  "ipv6_prefix_length": 123,
  "ip_addresses": [
    "<string>"
  ],
  "bgp_asn": 123,
  "administrative_state": "unspecified",
  "vrf_name": "<string>",
  "bfd_config": {
    "transmit_interval": 0,
    "receive_interval": 0,
    "detect_multiplier": 0,
    "passive_mode": false
  }
}
'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "status": "received",
  "extra_details": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

Body

application/json
system_name
string
required
name
string
required
ipsec_service
boolean
required
nat_service
boolean
required
snat_service
boolean
required
shared
boolean
required
ipv4_prefix_length
integer | null
ipv6_prefix_length
integer | null
ip_addresses
string[] | null
bgp_asn
integer | null
administrative_state
enum<string> | null
Available options:
unspecified,
up,
down
vrf_name
string | null
bfd_config
BfdConfig · object

Response

Successful Response

id
string
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
status
enum<string>
required
Available options:
received,
in_progress,
success,
failed,
cancelled
extra_details
Extra Details · object