Locating the ID of an APP
Select partners building channel apps need to know their app's ID in order to create and modify the channel's configuration. This tutorial demonstrates how to find an app's ID in the Developer Portal and the control panel.
Find in control panel
An app's ID can be found in the URL while on the app's page in a store's control panel. The location of the app's page depends on if the app is installed or uninstalled.
-
Uninstalled Draft Apps: Apps > My Apps > My Draft Apps (opens in a new tab)
-
Installed Apps: Apps > My Apps (opens in a new tab)
To open the app page, click the app:
The app ID is in the URL after /manage/marketplace/apps/
:
Find in Developer Portal
To find an app's ID in the Developer Portal (opens in a new tab):
-
Sign in to the Developer Portal (opens in a new tab).
-
Click Edit App.
-
Identify the app's ID is in the URL (ex:
/my/apps/{APP_ID}/summary?review=false
).
Usage
Once you obtain the app ID, you can use it to create or modify the app configuration for a channel using the Create a channel or Update a channel endpoint.
POST https://api.bigcommerce.com/stores/{STORE_HASH}/v3/channels
X-Auth-Token: {ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
[{
"type": "type of channel",
"platform": "sales channel platform",
"name": "name of the sales channel",
"external_id": "",
"status": "connected",
"app": {
"id": 123, // ID of the app
"sections": [{
"title": "Overview",
"query_path": "overview"
}, {
"title": "Settings",
"query_path": "settings"
}]
}
}]