Skip to main content
Storage policy assignment represents the storage zone for items in a given enterprise.

Storage policies

A list of storage policies.
PropertyTypeRequiredDescription
limitintegerNoThe limit that was used for these entries. This will be the same as the limit query parameter unless that value exceeded the maximum value allowed. The maximum value varies by API.
next_markerstringNoThe marker for the start of the next page of results. Can be null.
prev_markerstringNoThe marker for the start of the previous page of results. Can be null.
entriesarray of Storage policyNoA list of storage policies.
Example
{
  "limit": 1000,
  "next_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii",
  "prev_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVih",
  "entries": [
    {
      "id": "11446498",
      "type": "storage_policy",
      "name": "Montreal / Dublin"
    }
  ]
}

Storage policy

The Storage Policy object describes the storage zone.
PropertyTypeRequiredDescription
idstringYesThe unique identifier for this storage policy.
typeenum<string>YesThe value will always be storage_policy. Available options: storage_policy.
namestringNoA descriptive name of the region.
Example
{
  "id": "11446498",
  "type": "storage_policy",
  "name": "Montreal / Dublin"
}

Storage policy (Mini)

A mini description of a Storage Policy object.
PropertyTypeRequiredDescription
idstringYesThe unique identifier for this storage policy.
typeenum<string>YesThe value will always be storage_policy. Available options: storage_policy.
Example
{
  "id": "11446498",
  "type": "storage_policy"
}
Last modified on July 9, 2026