-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from jorisatabix/feature/ers
Add ERS (Easy Return Service) support
- Loading branch information
Showing
3 changed files
with
22 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,19 +22,21 @@ | |
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
|
||
namespace PostNL\Endpoints; | ||
|
||
/** | ||
* Sandbox endpoints | ||
* Sandbox endpoints. | ||
* | ||
* @author Jordi Jolink <[email protected]> | ||
* | ||
* @since 27-5-2018 | ||
*/ | ||
class Sandbox extends Endpoints | ||
{ | ||
public $Barcode = 'https://api-sandbox.postnl.nl/shipment/v1_1'; | ||
public $Confirm = 'https://api-sandbox.postnl.nl/shipment/v1_10'; | ||
public $Labelling = 'https://api-sandbox.postnl.nl/shipment/v2_1'; | ||
public $Labelling = 'https://api-sandbox.postnl.nl/shipment/v2_2'; | ||
public $Timeframe = 'https://api-sandbox.postnl.nl/shipment/v2_1'; | ||
public $Locations = 'https://api-sandbox.postnl.nl/shipment/v2_1/locations'; | ||
public $PostalCode = 'https://api-sandbox.postnl.nl/shipment/checkout/v1'; | ||
|