2017 © Pedro Peláez
 

library msan-api

Library for integration with M SAN partner Api services

image

locastic/msan-api

Library for integration with M SAN partner Api services

  • Thursday, April 14, 2016
  • by antonioperic
  • Repository
  • 4 Watchers
  • 0 Stars
  • 110 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

MsanApi

PHP Library for M SAN partner API, (*1)

Limits:, (*2)

Data                                                                            Method                                   Permission                  Limit per period
----                                                                            ------                                   ----------                  ----------------

Katalog artikala -------------------------------------------------------------- GetProductsList                           Required                    5 times per day

Cjenik artikala --------------------------------------------------------------  GetProductsPriceList                      Required                    5 times per day

Dostupnost artikala ----------------------------------------------------------- GetProductsAvailability                   Required                    4 times per hour

Tehničke specifikacije artikala ----------------------------------------------- GetProductsSpecification                  Required                    5 times per day

Zaglavlja dokumenata – jedan dokument ----------------------------------------- GetDocumentsHeaders                       Required                   20 times per hour

Stavke dokumenata – jedan dokument -------------------------------------------- GetDocumentsItems                         Required                   20 times per hour

Zaglavlja dokumenata – više dokumenata po rasponu (broj ili period). ---------- GetDocumentsHeaders                       Required                   10 times per hour
Max. 100 dok. koji zadovoljavaju.

Stavke dokumenata – više dokumenata po rasponu (broj ili period) -------------- GetDocumentsItems                         Required                   10 times per hour
Max. 100 dok. koji zadovoljavaju.

Available parameters for http requests:, (*3)

PRODUCT LIST:

    1) Products by code

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsList.aspx?ProductCode=0220448

    2) Products by type

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsList.aspx?ProductType=Procesor

    3) Entire list

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsList.aspx

PRODUCT CATEGORIES

    1) Categories list -- MANDATORY PARAMETER -- CategoryTypeId

        https://b2b.msan.hr/B2BService/HTTP/Products/GetCategoriesList.aspx

    2) Category by type id(1 for basic categorisation)

        https://b2b.msan.hr/B2BService/HTTP/Products/GetCategoriesList?CategoryTypeId=1

PRODUCT CATEGORISATION

    1) Products category -- MANDATORY PARAMETER -- CategoryTypeId

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsCategory.aspx

    2) Categories by category type id

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsCategory.aspx?CategoryTypeId=1

    3) Category by product code

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsCategory.aspx?ProductCode=12213

PRODUCT BARCODES

    1) Products barcodes

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsBarcodes.aspx

    2) Product barcode by product code

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsBarcodes?ProductCode=123234


PRODUCT PRICE LIST:

    1) By code

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsPriceList.aspx?ProductCode=0220448

    2) By type and/or promotion

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsPriceList.aspx?ProductType=Procesor&OnPromotion=true

    3) By brand

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsPriceList.aspx?Brand=Asustek

    4) Entire product price list

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsPriceList.aspx

PRODUCT AVAILABILITY

    1) By code

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsAvailability.aspx?ProductCode=0220448

    2) Entire product availability list

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsAvailability.aspx

PRODUCT SPECIFICATION

    1) By code

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsSpecification.aspx?ProductCode=0220448

    2) By type

        https://b2b.msan.hr/B2BService/HTTP/Products/GetProductsSpecification.aspx?ProductType=Procesor

DOCUMENTS HEADERS

    1) List

        https://b2b.msan.hr/B2BService/HTTP/Document/GetDocumentsHeaders.aspx

    2) By date(receipt)

        https://b2b.msan.hr/B2BService/HTTP/Document/GetDocumentsHeaders.aspx?DocumentDateFrom=01.01.2008&DocumentDateTo=31.01.2008&DocumentType=RAC

    3) By document number(from-to)

        https://b2b.msan.hr/B2BService/HTTP/Document/GetDocumentsHeaders.aspx?DocumentNoFrom=1&DocumentNoTo=1000&DocumentType=PON

    4) By number and date

        https://b2b.msan.hr/B2BService/HTTP/Document/GetDocumentsHeaders.aspx?DocumentNoFrom=1&DocumentNoTo=1000&DocumentDateFrom=01.01.2008&DocumentDateTo=30.06.2008&DocumentType=OTP

    5) By document type(PON = ponuda, OTP = otpremnica, RAC = račun)

        https://b2b.msan.hr/B2BService/HTTP/Document/GetDocumentsHeaders.aspx?DocumentNoFrom=1&DocumentNoTo=1000&DocumentType=PON

DOCUMENTS ITEMS

    1) List items

        https://b2b.msan.hr/B2BService/HTTP/Document/GetDocumentsItems.aspx

    2) Items by date and/or type

        https://b2b.msan.hr/B2BService/HTTP/Document/GetDocumentsItems.aspx?DocumentDateFrom=01.01.2008&DocumentDateTo=31.01.2008&DocumentType=RAC

    3) Items by from number to number

        https://b2b.msan.hr/B2BService/HTTP/Document/GetDocumentsItems.aspx?DocumentNoFrom=1&DocumentNoTo=1000&DocumentDateFrom=01.01.2008&DocumentDateTo=30.06.2008&DocumentType=OTP

Usage example

$test = new ProductHandler(
    new CurlSettings(array(
       (string)CURLOPT_VERBOSE => 1,
       (string)CURLOPT_SSL_VERIFYPEER => 1,
       (string)CURLOPT_CAINFO => 'certs/ca.pem',
       (string)CURLOPT_SSLCERT => 'certs/client.pem',
       (string)CURLOPT_SSLKEY => 'certs/key.pem',
       (string)CURLOPT_SSLKEYPASSWD => '1234',
       (string)CURLOPT_TIMEOUT => 300
    )),
    new ApiSettings(),
    new XmlReader()
);

$productData = $test->getProductsList();

The Versions

14/04 2016

dev-master

9999999-dev http://www.locastic.com

Library for integration with M SAN partner Api services

  Sources   Download

MIT

The Requires

 

The Development Requires

14/04 2016

1.2

1.2.0.0 http://www.locastic.com

Library for integration with M SAN partner Api services

  Sources   Download

MIT

The Requires

 

The Development Requires

29/03 2016

1.1

1.1.0.0 http://www.locastic.com

Library for integration with M SAN partner Api services

  Sources   Download

MIT

The Requires

 

The Development Requires

05/02 2016