Meteor package to communicate with DPD Poland API
npm install dpd-parcel-service-plPolish DPD Parcell Service API Wrapper
==============================================================================
``shell`
meteor add jaaaco:dpd-parcel-service-pl
`javascript
var dpd = new DPD(login,password,fid,testmode); // testmode is default = true
dpd.call('findPostalCodeV1',{
postalCodeV1: {
countryCode: 'PL',
zipCode: '51166'
}
},function(err, result){
if (err) {
console.log('Error', err);
} else {
console.log('findPostalCodeV1', result);
}
});
``