Box Developer Documentation
Latest version

Get all shield lists in enterprise

get
https://api.box.com/2.0
/shield_lists

Retrieves all shield lists in the enterprise.

Request

bearer [ACCESS_TOKEN]
application/json

Request Headers

stringin headerrequired

Version header.

Value is always 2025.0

Response

application/jsonList of Shield Lists

Returns the list of shield list objects.

get
Get all shield lists in enterprise
You can now try out some of our APIs live, right here in the documentation.
Log in

Request Example

Learn more about Box SDK versioning strategy.


Node/TypeScript v10
await client.shieldLists.getShieldListsV2025R0();
Python v10
client.shield_lists.get_shield_lists_v2025_r0()
.NET v10
await client.ShieldLists.GetShieldListsV2025R0Async();
Java v10
client.getShieldLists().getShieldListsV2025R0()

Response Example

{
  "entries": [
    {
      "content": {
        "type": "country_code"
      },
      "id": "12345678-1234-1234-1234-123456789012",
      "name": "My Shield List",
      "type": "shield_list"
    }
  ]
}