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

TypeScript Gen
await client.shieldLists.getShieldListsV2025R0();
Python Gen
client.shield_lists.get_shield_lists_v2025_r0()
.NET Gen
await client.ShieldLists.GetShieldListsV2025R0Async();

Response Example

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