Code Monkey home page Code Monkey logo

cscartapi's Introduction

CS-Cart API Class (v.0.1 beta)

This class will be in beta release until CS-Cart 4.0.1 software is beta.

What is this?

CS-Cart is a wonderful open source Shopping Cart software. This class is a helper class for calling CS-Cart 4 API.

Usage

To use the CS-Cart API, you need 3 parameters:

user_login

By default, the e-mail of the API user. Only administrators can access to the API!

api_key

The password, generated by the CS-Cart administrator panel.

api_url

Your shopping cart's main URL (eg. http://example.com/)

After you have these parameters, you can make API calls easily:

$cscartapi = new CSCartApi(
    array(
        'api_key' => '2G1lp1EyRS99bVuv5J090G7640M04v3D',
        'user_login' => '[email protected]',
        'api_url' => 'http://cscart4beta2.loc/'
    )
);

try {
    $params = array(
        'status' => "A"
    );
    $products = $cscartapi->get("products/1", $params);
    print_r($products);
} catch (Exception $e) {
    print $e->getMessage();
}

You have 5 main methods: api(), get(), update(), create(), delete()

You can access to the API version via getApiVersion() method, or you can get the CS-Cart version via getCartVersion() method.

cscartapi's People

Contributors

drahosistvan avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.