Search channels based on filters
curl --request POST \
--url https://api.shipbob.com/experimental/channel:search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"cursor": "string",
"records_per_page": 0,
"search_filters": {
"channel_ids": [
0
],
"channel_names": [
"string"
]
}
}'
{
"items": [
{
"application_name": "string",
"id": 0,
"name": "string",
"scopes": [
"string"
]
}
],
"next": "string",
"prev": "string",
"total_records": 0
}
Authentication using Personal Access Token (PAT) token
Channel search request body
Success
GChannel search response
Was this page helpful?
curl --request POST \
--url https://api.shipbob.com/experimental/channel:search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"cursor": "string",
"records_per_page": 0,
"search_filters": {
"channel_ids": [
0
],
"channel_names": [
"string"
]
}
}'
{
"items": [
{
"application_name": "string",
"id": 0,
"name": "string",
"scopes": [
"string"
]
}
],
"next": "string",
"prev": "string",
"total_records": 0
}