Skip to main content
POST
/
service
/
{tenant_name}
/
static_route
Create a new static route
curl --request POST \
  --url https://api.example.com/service/{tenant_name}/static_route \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "destination": "<string>",
  "gateway_ip_address": "<string>",
  "gateway_interface": "<string>",
  "enable": true,
  "distance": 1,
  "description": "<string>"
}
'
{
  "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
destination
string
required
gateway_ip_address
string | null
gateway_interface
string | null
enable
boolean
default:true
distance
integer
default:1
Required range: 1 <= x <= 255
description
string | null

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