Channels
Receiving
Inventories
Products
- PUTUpdate specific channel metadata record from a variant by channel metadata ID
- DELUsed to delete a specific channel metadata record from a variant by channel metadata ID
- POSTCreate a new Channel Metadata Entry for a given Variant
- POSTMigrates existing variants to a new product
- GETGets Packaging Requirement
- GETGets Taxonomy by Id
- GETGets Taxonomy
- POSTMigrates variants to existing product
- POSTAdd new product variants to a product
- GETGets Product by Id
- DELDeletes Bundle and removes associations to related products
- PATCHUpdate a single product with Json Merge Patch functionality
- POSTUsed to merge two or more variants together
- GETGets Taxonomy Parent
- GETGets multiple product variants
- POSTAdds new product variants to a product
- PATCHUpdates multiple product variants
- GETRetrieves List of Products based on filters provided
- POSTCreate single product to the store
Channels
Search channels
Channels
Search channels
Search channels based on filters
POST
/
channel:search
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
}
Authorizations
Authentication using Personal Access Token (PAT) token
Body
application/json
Channel search request body
Response
200
application/json
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
}