frankperez87/channel-advisor

There is no license information available for the latest version (v0.1.1) of this package.

This package allows you to easily integrate with ChannelAdvisor. This is not the official package.

v0.1.1 2016-10-27 12:08 UTC

This package is auto-updated.

Last update: 2024-05-14 16:06:00 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');