Get Single Channel
Retrieve detailed information for a specific store channel.
Endpoint
GET /api/shop/channels/{id}Request Headers
| Header | Required | Description |
|---|---|---|
Content-Type | Yes | application/json |
X-STOREFRONT-KEY | Yes | Your storefront API key |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | Yes | Channel ID |
Response Fields (200 OK)
| Field | Type | Description |
|---|---|---|
id | integer | Channel ID |
code | string | Unique channel code |
name | string | Channel display name |
description | string | Channel description |
hostname | string | Channel domain/hostname |
isActive | boolean | Channel active status |
logoUrl | string | Channel logo URL |
faviconUrl | string | Channel favicon URL |
createdAt | string | Creation date |
updatedAt | string | Last update date |
Use Cases
- Get channel branding information
- Load channel-specific configuration
- Fetch logo and favicon for display
- Support multi-channel storefronts

