---
title: "Returns all delivery regions available to your organization"
slug: "returns-all-delivery-regions-available-to-your-organization-1"
updated: 2025-08-07T14:39:28Z
published: 2025-08-07T14:41:42Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.skillable.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Returns all delivery regions available to your organization

Get/deliveryregions

The **DeliveryRegions** command will return all delivery regions available to your organization. **NOTE**: there are no query parameters for this command.

SecurityAPI Key: api_keyHeader parameter nameapi_key

All methods require an API key, which must be obtained from Skillable. This key is used by Skillable to validate your account. The key can be passed as an HTTP request header with the header name "api_key".

Responses200

OK Response.

<select class='api-response-data' aria-label='Media type'><option value='c8f2b6f5-3142-48b6-a79f-d40ef166105d'>application/json</option>
</select><select class='select-example' aria-label='Media type'><option value='d5623a6a-bcd3-457e-9fc7-e54e34e91704'>Example of a successful response listing all delivery r...</option>
</select>Example of a successful response listing all delivery regions available to your organization

```json
{
  "DeliveryRegions": [
    {
      "Id": 1,
      "Name": "North America",
      "Description": "North American datacenters."
    },
    {
      "Id": 2,
      "Name": "Australia",
      "Description": null
    }
  ],
  "Status": 1,
  "Error": null
}
```

Expand Allobject  DeliveryRegions Array of object   

Array of DeliveryRegion objects.

object  Idinteger    

The unique identifier of the delivery region.

Namestring    

The name of the delivery region.

Descriptionstring   | null  

A brief description of the delivery region.

Statusinteger    

Indicates the status of the API request. 0 = Error 1 = Success

Errorstring   | null  

In the event of an error, this will contain a detailed error message.
