GET
/
channel
curl --request GET \
  --url https://api.shipbob.com/2.0/channel \
  --header 'Authorization: <api-key>'
[
  {
    "application_name": "Api",
    "id": 0,
    "name": "string",
    "scopes": [
      "channels_read",
      "orders_read",
      "orders_write"
    ]
  }
]

Authorizations

Authorization
string
header
required

Provide your personal access token in the format 'Bearer {your_personal_access_token}'

Response

200
application/json
Success
application_name
string | null

Name of the application that owns the channel

Example:

"Api"

id
integer

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"
]

Was this page helpful?