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

# Get active version

> Return the operating-instructions version currently in force for your storefront

`GET /api/v2/storefront/operating-instructions/active`

Returns the version currently advertised as active — the one the Merchandising Agent will use on the next composition. Returns `404` when no version has been activated yet.

## Request

```bash theme={null}
curl "https://api.interchange.io/api/v2/storefront/operating-instructions/active" \
  -H "Authorization: Bearer $SCOPE3_API_KEY"
```

## Parameters

This endpoint takes no parameters.

## Response

```json theme={null}
{
  "id": "43",
  "storefrontId": "1234",
  "version": 3,
  "content": "# Merchandising rules\n\nLead with premium CTV inventory. Never surface remnant display to direct-response buyers.",
  "notes": "clarify product packaging",
  "isActive": true,
  "createdAt": "2026-06-01T14:30:00Z",
  "createdBy": "5567",
  "ownershipIssues": []
}
```

Returns the active `OperatingInstructionsResponse`, with `isActive: true`.

`ownershipIssues` is empty for a coherent version. A legacy version may return one or more issues naming facts that belong in Selling Terms, Buyer Discounts, Business Profile, or Acceptance Policy; those structured settings remain authoritative.

## Errors

* `404 NOT_FOUND` — no version has been activated for your storefront.

See [Errors](/v2/reference/errors) for the full error contract.

## Related

<CardGroup cols={2}>
  <Card title="Activate version" href="/v2/storefront/operating-instructions/tasks/activate-version" icon="toggle-on">
    Set the active version
  </Card>

  <Card title="List versions" href="/v2/storefront/operating-instructions/tasks/list-versions" icon="list">
    See all versions, newest first
  </Card>

  <Card title="Operating instructions tasks" href="/v2/storefront/operating-instructions/tasks" icon="list-check">
    All operating-instructions operations
  </Card>

  <Card title="Operating instructions overview" href="/v2/storefront/operating-instructions/overview" icon="scroll">
    Concepts and versioning model
  </Card>
</CardGroup>
