frankperez87 / channel-advisor
This package allows you to easily integrate with ChannelAdvisor. This is not the official package.
Installs: 119
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/frankperez87/channel-advisor
This package is auto-updated.
Last update: 2025-10-14 19:05:33 UTC
README
This API allows you to connect to the Channel Advisor system in order to manage orders and inventory.
This is not the official API provided by Channel Advisor. Still in development.
Currently Supported Services Include
Admin Related Service
- Admin
Order Related Services
- Fulfillment
- Order
- Shipping
Example Usage for Requesting Access
<?php require 'vendor/autoload.php'; $developer_key = 'XXX'; $password = 'XXX'; $account_id = 'XXX'; // Set ChannelAdvisor Account Credentials and Service You Wish To Use $service = ChannelAdvisor\ServiceFactory::make('admin', $developer_key, $password, $account_id); // Output Result $result = $service->requestAccess('local id here');