Skip to content
/ sdk Public
forked from myparcelnl/sdk

The sdk to use in your favorite framework

Notifications You must be signed in to change notification settings

jstolp/sdk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Latest Unstable Version

MyParcel SDK



Please, star this repository if you use this repository. ⭐

Installation

This SDK uses composer.

Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you.

For more information on how to use/install composer, please visit: https://github.com/composer/composer

To install the MyParcel SDK into your project, simply

$ composer require myparcelnl/sdk

Installation without composer

If you don't have experience with composer, it is possible to use the SDK without using composer.

You can download the zip on the projects releases page.

  1. Download the package zip (SDKvx.x.x.zip).
  2. Unzip the contents of the zip, and upload the vendor directory to your server.
  3. In your project, require the file vendor/autoload.php
  4. You can now use the SDK in your project

Requirements

The MyParcel SDK works on php versions 5.6 and 7.0 Also the php curl extension needs to be installed.

Quick start and examples

$myParcelAPI = new MyParcelAPI();

$consignment = (new MyParcelConsignmentRepository())
    ->setApiKey('api_key_from_MyParcel_backoffice')
    ->setCountry('NL')
    ->setPerson('Piet Hier')
    ->setCompany('Piet BV')
    ->setFullStreet('Plein 1945 55b')
    ->setPostalCode('2231JE')
    ->setCity('Amsterdam')
    ->setEmail('[email protected]');
    
$myParcelAPI
    ->addConsignment($consignment)
    ->setPdfOfLabels()
    ->downloadPdfOfLabels();

Testing

Please run vendor/bin/phpunit --bootstrap vendor/autoload.php tests/ to test the application

Available Methods

$myParcelAPI = new MyParcelAPI();

$consignment = (new MyParcelConsignmentRepository())
    ->setApiKey('api_key_from_MyParcel_backoffice')
    ->setCountry('NL')
    ->setPerson('Piet Hier')
    ->setCompany('Piet BV')
    ->setFullStreet('Plein 1945 55b')
    ->setPostalCode('2231JE')
    ->setPackageType(1)
    ->setCity('Amsterdam')
    ->setEmail('[email protected]')
    ->setPhone('+31 (0)634213465')
    ->setLargeFormat(false)
    ->setOnlyRecipient(false)
    ->setSignature(false)
    ->setReturn(false)
    ->setInsurance(false)
    ->setLabelDescription('Order 10034');
    
$myParcelAPI
    ->addConsignment($consignment)

Create concept

$myParcelAPI->createConcepts();

Download labels

$myParcelAPI->setPdfOfLabels();
$myParcelAPI->downloadPdfOfLabels();

Get label link

$myParcelAPI
    ->setLinkOfLabels()
    ->getLinkOfLabels()

Save MyParcel id

After setPdfOfLabels(), setLinkOfLabels() and createConcepts() you can save the api id to your database. With this id you can easily retrieve the latest status.

$consignment->getApiId();

Get barcode

The barcode is available after setPdfOfLabels() and setLinkOfLabels()

$consignment->getBarcode();

Get status

After setPdfOfLabels(), setLinkOfLabels() and createConcepts() you can get the status.

$consignment->getStatus();

Multiple shipments

To create multiple consignments or get one pdf with multiple consignments, set multiple consignments. It's faster and cleaner.

$myParcelAPI = new MyParcelAPI();

foreach ($yourShipments as $shipment) {
    (...) // Set $consignment
    $myParcelAPI
        ->addConsignment($consignment)
}

Later on

In a new request, you can get al the data again.

$consignment = (new MyParcelConsignmentRepository())
    ->setApiKey('api_key_from_MyParcel_backoffice')
    ->setApiId(205670);

$myParcelAPI
    ->addConsignment($consignment)
    ->setLatestData();

$consignment = $myParcelAPI
    ->getOneConsignment();

$status = $consignment->getStatus();
$barcode = $consignment->getBarcode();

Contribute

  1. Check for open issues or open a new issue to start a discussion around a bug or feature.
  2. Fork the repository on GitHub to start making your changes.
  3. Write one or more tests for the new feature or that expose the bug.
  4. Make code changes to implement the feature or fix the bug.
  5. Send a pull request to get your changes merged and published.

About

The sdk to use in your favorite framework

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%