Get

Description

Get an Action egress control rule by ID.

Request

HTTP Method: GET

Field description

Field Description
id Action egress control rule ID.

Sample request


curl -X GET \
  https://<<META.tenant.domain>>/api/v1/admin/action_egress_control_rules/1 \
  -H 'content-type: application/json' \
  -H 'Authorization: Bearer <<CREDENTIAL.tines_api_key>>'

Response

A successful request will return an object with an Action egress control rule.

Sample response

{
  "id": 1,
  "ip": "192.168.1.1",
  "fqdn": null,
  "description": "Example IP",
  "created_at": "2024-07-25T16:44:01Z",
  "updated_at": "2024-07-25T16:44:11Z"
}
Was this helpful?