# Automations.GetStorageLocation

```go
func (automationClient) GetStorageLocation(
    ctx context.Context,
    storageLocationID uuid.UUID,
) (*workflows.StorageLocation, error)
```

Get a storage location used by automation storage event triggers.

## Parameters

**storageLocationID**

`uuid.UUID`

required: true

The ID of the storage location.

## Returns

A storage location object.

```go title="Go"
location, err := client.Automations.GetStorageLocation(ctx, storageLocationID)
```
