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

# Automations.GetStorageLocation

```go theme={"system"}
func (automationClient) GetStorageLocation(
    ctx context.Context,
    storageLocationID uuid.UUID,
) (*workflows.StorageLocation, error)
```

Get a storage location used by automation storage event triggers.

## Parameters

<ParamField path="storageLocationID" type="uuid.UUID" required>
  The ID of the storage location.
</ParamField>

## Returns

A storage location object.

<RequestExample>
  ```go Go theme={"system"}
  location, err := client.Automations.GetStorageLocation(ctx, storageLocationID)
  ```
</RequestExample>
