PHPackages                             newstore-apimatic/newstore-apimatic-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. newstore-apimatic/newstore-apimatic-sdk

ActiveLibrary

newstore-apimatic/newstore-apimatic-sdk
=======================================

Sample SDKs for Newstore By APIMatic

0.0.1(1mo ago)00MITPHPPHP ^7.2 || ^8.0

Since Jul 15Pushed 1mo agoCompare

[ Source](https://github.com/sdks-io/newstore-apimatic-php-sdk)[ Packagist](https://packagist.org/packages/newstore-apimatic/newstore-apimatic-sdk)[ Docs](https://developer.newstore.com/)[ RSS](/packages/newstore-apimatic-newstore-apimatic-sdk/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependencies (5)Versions (2)Used By (0)

Getting Started with NewStore API
=================================

[](#getting-started-with-newstore-api)

Introduction
------------

[](#introduction)

NewStore public APIs

Install the Package
-------------------

[](#install-the-package)

Run the following command to install the package and automatically add the dependency to your composer.json file:

```
composer require "newstore-apimatic/newstore-apimatic-sdk:0.0.1"
```

Or add it to the composer.json file manually as given below:

```
"require": {
    "newstore-apimatic/newstore-apimatic-sdk": "0.0.1"
}
```

You can also view the package at:

Initialize the API Client
-------------------------

[](#initialize-the-api-client)

***Note:*** Documentation for the client can be found [here.](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/client.md)

The following parameters are configurable for the API Client:

ParameterTypeDescriptiontenant`string`*Default*: `'dodici'`environment[`Environment`](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/README.md#environments)The API environment.
 **Default: `Environment.STAGING`**timeout`int`Timeout for API calls in seconds.
*Default*: `0`enableRetries`bool`Whether to enable retries and backoff feature.
*Default*: `false`numberOfRetries`int`The number of retries to make.
*Default*: `0`retryInterval`float`The retry time interval between the endpoint calls.
*Default*: `1`backOffFactor`float`Exponential backoff factor to increase interval between retries.
*Default*: `2`maximumRetryWaitTime`int`The maximum wait time in seconds for overall retrying requests.
*Default*: `0`retryOnTimeout`bool`Whether to retry on request timeout.
*Default*: `true`httpStatusCodesToRetry`array`Http status codes to retry against.
*Default*: `408, 413, 429, 500, 502, 503, 504, 521, 522, 524`httpMethodsToRetry`array`Http methods to retry against.
*Default*: `'GET', 'PUT'`proxyConfiguration[`ProxyConfigurationBuilder`](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/proxy-configuration-builder.md)Represents the proxy configurations for API callsclientCredentialsAuth[`ClientCredentialsAuth`](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/auth/oauth-2-client-credentials-grant.md)The Credentials Setter for OAuth 2 Client Credentials GrantThe API client can be initialized as follows:

```
use NewStoreAPILib\Environment;
use NewStoreAPILib\Authentication\ClientCredentialsAuthCredentialsBuilder;
use NewStoreAPILib\Models\OAuthScopeEnum;
use NewStoreAPILib\NewStoreAPIClientBuilder;

$client = NewStoreAPIClientBuilder::init()
    ->clientCredentialsAuthCredentials(
        ClientCredentialsAuthCredentialsBuilder::init(
            'OAuthClientId',
            'OAuthClientSecret'
        )
            ->oAuthScopes(
                [
                    OAuthScopeEnum::CATALOGIMPORT_SCHEMASREAD,
                    OAuthScopeEnum::CATALOGIMPORT_SCHEMASWRITE
                ]
            )
    )
    ->environment(Environment::STAGING)
    ->tenant('dodici')
    ->build();
```

Environments
------------

[](#environments)

The SDK can be configured to use a different environment for making API calls. Available environments are:

### Fields

[](#fields)

NameDescriptionSTAGING**Default**Authorization
-------------

[](#authorization)

This API uses the following authentication schemes.

- [`oauth (OAuth 2 Client Credentials Grant)`](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/auth/oauth-2-client-credentials-grant.md)

List of APIs
------------

[](#list-of-apis)

- [Import Schemas](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/import-schemas.md)
- [Pricebookexport](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/pricebookexport.md)
- [Productexport](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/productexport.md)
- [Financial Document](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/financial-document.md)
- [Sales Goals Management](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/sales-goals-management.md)
- [Store Reporting Config](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/store-reporting-config.md)
- [Inventory Configuration](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/inventory-configuration.md)
- [Reason Codes](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/reason-codes.md)
- [Addresscompletion](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/addresscompletion.md)
- [Devicenotifications](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/devicenotifications.md)
- [Deviceregistrations](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/deviceregistrations.md)
- [Devicesubscriptions](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/devicesubscriptions.md)
- [Associate Appexperimentsconfiguration](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/associate-appexperimentsconfiguration.md)
- [Platformeventcallbacks](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/platformeventcallbacks.md)
- [Cart](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/cart.md)
- [Notifications](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/notifications.md)
- [Profiles](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/profiles.md)
- [Customer Profile](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/customer-profile.md)
- [Data](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/data.md)
- [Token-Operations](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/token-operations.md)
- [Address](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/address.md)
- [Customer-Configuration](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/customer-configuration.md)
- [Segmentation](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/segmentation.md)
- [Datasets](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/datasets.md)
- [Jobs](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/jobs.md)
- [Events](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/events.md)
- [Extensions](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/extensions.md)
- [Installations](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/installations.md)
- [Stores](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/stores.md)
- [Cashboxes](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/cashboxes.md)
- [Orders](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/orders.md)
- [Fiscal-Providers](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/fiscal-providers.md)
- [Tenant-Config](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/tenant-config.md)
- [Easypost Adapter Config](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/easypost-adapter-config.md)
- [Shipment-Configurations](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/shipment-configurations.md)
- [Provider-Rates](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/provider-rates.md)
- [Shipping-Options](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/shipping-options.md)
- [Shipping-Option-Audits](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/shipping-option-audits.md)
- [Shipping-Labels](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/shipping-labels.md)
- [Manifests](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/manifests.md)
- [Bookings](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/bookings.md)
- [Fulfillment-Requests](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/fulfillment-requests.md)
- [Fulfillment-Tasks](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/fulfillment-tasks.md)
- [Shortings](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/shortings.md)
- [Package-Types](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/package-types.md)
- [Clients](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/clients.md)
- [Identity-Providers](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/identity-providers.md)
- [Users](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/users.md)
- [Support-Users](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/support-users.md)
- [Roles](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/roles.md)
- [Insights](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/insights.md)
- [Counting](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/counting.md)
- [Transferring](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/transferring.md)
- [Reservations](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/reservations.md)
- [Phavda-Notifications](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/phavda-notifications.md)
- [Sales-Orders](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/sales-orders.md)
- [Stock](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/stock.md)
- [Order-Placement](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/order-placement.md)
- [Adyen-Adapter](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/adyen-adapter.md)
- [Payment-Definitions](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/payment-definitions.md)
- [Stripe-Webhook-Notifications](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/stripe-webhook-notifications.md)
- [Providers](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/providers.md)
- [Payment-Links](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/payment-links.md)
- [Payment-Account](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/payment-account.md)
- [Discounts](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/discounts.md)
- [Tppe](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/tppe.md)
- [Settings](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/settings.md)
- [Platform-Status](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/platform-status.md)
- [Simulation](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/simulation.md)
- [Routing-Ruleset](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/routing-ruleset.md)
- [Routing-Config](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/routing-config.md)
- [Routing](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/routing.md)
- [Order-Injection-Config](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/order-injection-config.md)
- [Order-Injection](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/order-injection.md)
- [Audit-Events](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/audit-events.md)
- [Tax-Definitions](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/tax-definitions.md)
- [Store-Tax-Configuration](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/store-tax-configuration.md)
- [Tax-Transactions](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/tax-transactions.md)
- [Tax-Quotations](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/tax-quotations.md)
- [Tenant-Tax-Configuration](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/controllers/tenant-tax-configuration.md)

SDK Infrastructure
------------------

[](#sdk-infrastructure)

### Configuration

[](#configuration)

- [ProxyConfigurationBuilder](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/proxy-configuration-builder.md)

### HTTP

[](#http)

- [HttpRequest](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/http-request.md)
- [HttpResponse](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/http-response.md)

### Utilities

[](#utilities)

- [FileWrapper](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/file-wrapper.md)
- [ApiException](https://www.github.com/sdks-io/newstore-apimatic-php-sdk/tree/0.0.1/doc/api-exception.md)

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance90

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

47d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ef06f97b4ff5db714f2a124525216538f97338487cd4e2bca22baa32c0bf90cd?d=identicon)[developer-sdksio](/maintainers/developer-sdksio)

---

Top Contributors

[![developer-sdksio](https://avatars.githubusercontent.com/u/135820708?v=4)](https://github.com/developer-sdksio "developer-sdksio (1 commits)")

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/newstore-apimatic-newstore-apimatic-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/newstore-apimatic-newstore-apimatic-sdk/health.svg)](https://phpackages.com/packages/newstore-apimatic-newstore-apimatic-sdk)
```

###  Alternatives

[square/square

Use Square APIs to manage and run business including payment, customer, product, inventory, and employee management.

794.2M33](/packages/square-square)[paypal/paypal-server-sdk

PayPal's SDK for interacting with the REST APIs

651.1M22](/packages/paypal-paypal-server-sdk)[pagarme/pagarme-php-sdk

Pagarme API

11196.8k](/packages/pagarme-pagarme-php-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
