afosto/active-ants

Client for ActiveAnts API

Installs: 511

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 3

Open Issues: 0

Type:package

1.0.9 2016-10-12 06:32 UTC

This package is auto-updated.

Last update: 2024-04-23 19:03:59 UTC


README

This package provides a wrapper for the ActiveAnts ShopApi. This package was developed by Afosto to make a reliable connection between Afosto (Retail Software) and Active Ants and provides all the basic functionality.

Installation

To install, use composer:

composer require afosto/active-ants

Usage

First get an account at ActiveAnts and obtain a username and password for the ShopApi.

Start the app with the following code. The application will obtain an authorization-token, retreive settings and cache these in the cache folder.

App::start($endpoint, $username, $password, $cacheDirectory);

Below you'll find a subset of the available methods.

Create a product

$product = Product::model()
        ->setName('testProduct')
        ->setSku('testSku');

if ($product->save()) {
    echo "Product was saved";
}

Create an order

$item = OrderItem::model()
        ->setSku('testSku')
        ->setGrossPrice(1.21)
        ->setName('Test Product')
        ->setTaxRate(21);

$address = Address::model()
        ->setName('Afosto SaaS BV')
        ->setAddress('Protonstraat', 9, 'a')
        ->setCity('Groningen')
        ->setCountry('NL')
        ->setPostalcode('9743AL');

$order = Order::model()
        ->setEmail('support@afosto.com')
        ->setOrderId('#1')
        ->setPhoneNumber('0507119519')
        ->addOrderItem($item)
        ->setBillingAddress($address)
        ->setShippingAddress($address);

if ($order->save()) {
    echo "Order was saved";
}

Get stock for all products

foreach (Stock::model()->findAll() as $stock) {
    echo $stock->sku . ': ' . $stock->stock . "\n";
}