Latest

Retrieve all IP access control lists

Retrieves the details of all IP access control lists in the account.

API Endpoint

GET https://api.plivo.com/v1/Account/{auth_id}/Zentrunk/IPAccessControlList/

Arguments

No arguments need to be passed.

Returns

A dictionary with an objects property that contains an array of IP access control lists objects.

Response

{
  "api_id": "a04ad809-3b78-4bbe-9baf-acfc7800b10f",
  "meta": {
    "limit": 2,
    "offset": 0,
    "total_count": 109,
    "previous": null,
    "next": "v1/Account/{auth_id}/Zentrunk/IPAccessControlList/?limit=2&offset=2"
  },
  "objects": [
    {
      "ipacl_uuid": "f19c4773-4ae6-4b75-92ea-9cf3ea4227d6",
      "name": "sample_ipacl_1",
      "ip_addresses": [
        "192.162.1.1,126.0.1.1"
      ]
    },
    {
      "ipacl_uuid": "f19c4773-4ae6-4b75-92ea-9cf3ea4227d6",
      "name": "sample_ipacl_2",
      "ip_addresses": [
        "192.168.1.1,127.0.1.1"
      ]
    }
  ]
}
1
2
curl -i --user AUTH_ID:AUTH_TOKEN \
    https://api.plivo.com/v1/Account/{auth_id}/Zentrunk/IPAccessControlList/