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

# Unarchiving features

Archived features can be restored using Stigg’s API.

## Using the GraphQL API (legacy)

```graphql theme={null}
mutation UnarchiveFeature($input: UnarchiveFeatureInput!) {
  unarchiveFeature(input: $input) {
    refId
    featureStatus
  }
}
```

```json theme={null}
{
  "input": {
    "refId": "feature-seats"
  }
}
```

## Using the REST API

```
POST /api/v1/features/{id}/unarchive
```
