Skip to main content
GET
/
1.0
/
channel
Get channels
curl --request GET \
  --url https://api.shipbob.com/1.0/channel \
  --header 'Authorization: Bearer <token>'
[
  {
    "application_name": "Api",
    "id": 0,
    "name": "string",
    "scopes": [
      "channels_read",
      "orders_read",
      "orders_write"
    ]
  }
]
API 1.0 is deprecated and will be sunset on July 31, 2026. Please migrate to the latest API version. See our Versioning Policy for details.

Authorizations

Authorization
string
header
required

Authentication using Personal Access Token (PAT) token

Response

Success

application_name
string | null

Name of the application that owns the channel

Example:

"Api"

id
integer<int32>

Unique id of the channel

name
string | null

Name of the channel

scopes
string[] | null

Array of permissions granted for the channel

Example:
[
  "channels_read",
  "orders_read",
  "orders_write"
]