/printsdk

Primary LanguagePHP

SwaggerClient-php

No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)

This PHP package is automatically generated by the Swagger Codegen project:

  • API version: 2019-09-18T08:39:50Z
  • Build package: io.swagger.codegen.languages.PhpClientCodegen

Requirements

PHP 5.5 and later

Installation & Usage

Composer

To install the bindings via Composer, add the following to composer.json:

{
  "repositories": [
    {
      "type": "git",
      "url": "https://github.com//.git"
    }
  ],
  "require": {
    "/": "*@dev"
  }
}

Then run composer install

Manual Installation

Download the files and include autoload.php:

    require_once('/path/to/SwaggerClient-php/vendor/autoload.php');

Tests

To run the unit tests:

composer install
./vendor/bin/phpunit

Getting Started

Please follow the installation procedure and then run the following:

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: DefaultAuthorizer
$config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('Authorization', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// $config = Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('Authorization', 'Bearer');

$apiInstance = new Swagger\Client\Api\ContactApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);

try {
    $apiInstance->contactsGet();
} catch (Exception $e) {
    echo 'Exception when calling ContactApi->contactsGet: ', $e->getMessage(), PHP_EOL;
}

?>

Documentation for API Endpoints

All URIs are relative to https://api.print.com

Class Method HTTP request Description
ContactApi contactsGet GET /contacts
ContactApi contactsIdDelete DELETE /contacts/{id}
ContactApi contactsIdPut PUT /contacts/{id} Update contact
ContactApi contactsPost POST /contacts New contact
ContactApi placesGet GET /places Get address
ContactApi placesSearchGet GET /places/search Find address
ContactApi placesSuggestionsGet GET /places/suggestions Address suggestions
ContactApi placesValidatePost POST /places/validate Validate address
OrdersApi ordersPost POST /orders Place Order
PrintGatewayApi loginPost POST /login Login
ProductsApi productsGet GET /products List of products
ProductsApi productsSkuGet GET /products/{sku} Product specifics
ProductsApi productsSkuPricePost POST /products/{sku}/price Product price
ProductsApi productsSkuPricesGet GET /products/{sku}/prices Product Prices
ShippingApi productsSkuShippingPossibilitiesPost POST /products/{sku}/shipping-possibilities Shipping possibilities

Documentation For Models

Documentation For Authorization

DefaultAuthorizer

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header

Author