Description
Get an IP access control rule by ID.
Request
HTTP Method: GET
Field description
Field | Description |
---|---|
id | IP access control rule ID. |
Sample request
curl -X GET \
https://<<META.tenant.domain>>/api/v1/admin/ip_access_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 IP access control rule.
Sample response
{
"id": 1,
"ip": "192.168.1.1",
"description": "Example IP",
"created_at": "2024-07-25T16:44:01Z",
"updated_at": "2024-07-25T16:44:11Z"
}