Skip to main content
GET /api/v2/storefront/operating-instructions/{version} Fetches one operating-instructions version by its per-storefront version number. Use this to read a historical version before deciding whether to re-activate it.

Request

curl "https://api.interchange.io/api/v2/storefront/operating-instructions/3" \
  -H "Authorization: Bearer $SCOPE3_API_KEY"

Parameters

FieldTypeRequiredNotes
versionintegerYesPath param — per-storefront version number. Monotone, starts at 1, never reused

Response

{
  "id": "43",
  "storefrontId": "1234",
  "version": 3,
  "content": "# Merchandising rules\n\nLead with premium CTV inventory. Never surface remnant display to holding-company buyers.",
  "notes": "tighten brand-safety rules",
  "isActive": true,
  "createdAt": "2026-06-01T14:30:00Z",
  "createdBy": "5567"
}
Returns the matching OperatingInstructionsResponse. isActive reflects whether this is currently the active version.

Errors

  • 404 NOT_FOUND — no version with that number exists for your storefront.
See Errors for the full error contract.

List versions

Find the version number to fetch

Activate version

Make this version the active one

Operating instructions tasks

All operating-instructions operations

Operating instructions overview

Concepts and versioning model