PHPackages                             sdksio/apimatic-sticky-apis-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. [API Development](/categories/api)
4. /
5. sdksio/apimatic-sticky-apis-sdk

ActiveLibrary[API Development](/categories/api)

sdksio/apimatic-sticky-apis-sdk
===============================

This is a test SDK generated by APIMatic

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

Since Apr 20Pushed 3mo agoCompare

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

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

Getting Started with sticky.io Restful API v2025.7.31
=====================================================

[](#getting-started-with-stickyio-restful-api-v2025731)

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

[](#introduction)

sticky.io Restful API offers some new functionality as well as fully restful routes. All request with a payload should be sent as JSON. The authorization used is [Basic Authentication](https://swagger.io/docs/specification/authentication/basic-authentication/)

[Version 1 JSON API](https://developer-prod.sticky.io)

**Requests**

API requests that call for a request body are expected to be in **JSON Format**.

**Responses**

The v2 standard JSON responses will usually contain at least the following:

FieldData TypeDescriptionstatusStringStatus of the API call. "SUCCESS" or "FAILURE" are possible values.dataMixedData returned by API call. It could be an object or an array of objects.**List Responses**

GET requests that return a list of entities will usually contain the following:

FieldData TypeDescriptionstatusStringStatus of the API call. "SUCCESS" or "FAILURE" are possible values.dataMixedData returned by API call. It could be an object or an array of objects.current\_pageIntegerCurrent page associated with the dataset returned in `data`.first\_page\_urlStringURL that maps to the first paginated list of a given entity.last\_pageIntegerNumber of pages in a given dataset.last\_page\_urlStringURL that maps to the last paginated list of a given entity.next\_page\_urlStringURL that maps to the next paginated list of a given entity.pathStringURL that maps to the index page of a given entity.per\_pageMixedData returned by API call. It could be an object or an array of objects.prev\_page\_urlMixedData returned by API call. It could be an object or an array of objects.fromIntegerOffset record number lower bound.toMixedOffset record number upper bound.totalIntegerTotal amount of records that exist for a given entity.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 "sdksio/apimatic-sticky-apis-sdk:0.0.1"
```

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

```
"require": {
    "sdksio/apimatic-sticky-apis-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/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/client.md)

The following parameters are configurable for the API Client:

ParameterTypeDescriptionenvironment[`Environment`](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/README.md#environments)The API environment.
 **Default: `Environment.PRODUCTION`**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'`loggingConfiguration[`LoggingConfigurationBuilder`](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/logging-configuration-builder.md)Represents the logging configurations for API callsproxyConfiguration[`ProxyConfigurationBuilder`](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/proxy-configuration-builder.md)Represents the proxy configurations for API callsbasicCredentials[`BasicCredentials`](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/auth/basic-authentication.md)The Credentials Setter for Basic AuthenticationbearerCredentials[`BearerCredentials`](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/auth/oauth-2-bearer-token.md)The Credentials Setter for OAuth 2 Bearer tokenThe API client can be initialized as follows:

```
use StickyIoRestfulApiV2025731Lib\Logging\LoggingConfigurationBuilder;
use StickyIoRestfulApiV2025731Lib\Logging\RequestLoggingConfigurationBuilder;
use StickyIoRestfulApiV2025731Lib\Logging\ResponseLoggingConfigurationBuilder;
use Psr\Log\LogLevel;
use StickyIoRestfulApiV2025731Lib\Environment;
use StickyIoRestfulApiV2025731Lib\Authentication\BasicCredentialsBuilder;
use StickyIoRestfulApiV2025731Lib\Authentication\BearerCredentialsBuilder;
use StickyIoRestfulApiV2025731Lib\StickyIoRestfulApiV2025731ClientBuilder;

$client = StickyIoRestfulApiV2025731ClientBuilder::init()
    ->basicCredentials(
        BasicCredentialsBuilder::init(
            'username',
            'password'
        )
    )
    ->bearerCredentials(
        BearerCredentialsBuilder::init(
            'AccessToken'
        )
    )
    ->environment(Environment::PRODUCTION)
    ->loggingConfiguration(
        LoggingConfigurationBuilder::init()
            ->level(LogLevel::INFO)
            ->requestConfiguration(RequestLoggingConfigurationBuilder::init()->body(true))
            ->responseConfiguration(ResponseLoggingConfigurationBuilder::init()->headers(true))
    )
    ->build();
```

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

[](#environments)

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

### Fields

[](#fields)

NameDescriptionPRODUCTION**Default**Authorization
-------------

[](#authorization)

This API uses the following authentication schemes.

- [`basic (Basic Authentication)`](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/auth/basic-authentication.md)
- [`bearer (OAuth 2 Bearer token)`](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/auth/oauth-2-bearer-token.md)

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

[](#list-of-apis)

- [Billing Models](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/billing-models.md)
- [Campaigns](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/campaigns.md)
- [Payment Types Methods](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/payment-types-methods.md)
- [Promo Codes](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/promo-codes.md)
- [Custom Fields](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/custom-fields.md)
- [Start Stop Reset](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/start-stop-reset.md)
- [Line Item Custom Options](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/line-item-custom-options.md)
- [Line Item Management](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/line-item-management.md)
- [Trial Workflows](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/trial-workflows.md)
- [Payment Router](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/payment-router.md)
- [Volume Discounts](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/volume-discounts.md)
- [Permissions](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/permissions.md)
- [Affiliates](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/affiliates.md)
- [Meta](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/meta.md)
- [Addresses](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/addresses.md)
- [Wallet](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/wallet.md)
- [Interests](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/interests.md)
- [Communications](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/communications.md)
- [Contacts](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/contacts.md)
- [Coupons](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/coupons.md)
- [Customers](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/customers.md)
- [Gateways](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/gateways.md)
- [Images](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/images.md)
- [Types](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/types.md)
- [Templates](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/templates.md)
- [Notes](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/notes.md)
- [Products](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/products.md)
- [Discount](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/discount.md)
- [Credits](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/credits.md)
- [Overrides](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/overrides.md)
- [Subscriptions](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/subscriptions.md)
- [Orders](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/orders.md)
- [Configurations](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/configurations.md)
- [Offers](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/offers.md)
- [Attributes](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/attributes.md)
- [Categories](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/categories.md)
- [Variants](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/variants.md)
- [Prospects](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/prospects.md)
- [Shipping](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/shipping.md)
- [Tokenization](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/tokenization.md)
- [Users](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/users.md)
- [Chargeback](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/chargeback.md)
- [Inventories](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/inventories.md)
- [Warehouse](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/warehouse.md)
- [Order](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/order.md)
- [Subscription](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/subscription.md)
- [Misc](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/controllers/misc.md)

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

[](#sdk-infrastructure)

### Configuration

[](#configuration)

- [ProxyConfigurationBuilder](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/proxy-configuration-builder.md)
- [LoggingConfigurationBuilder](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/logging-configuration-builder.md)
- [RequestLoggingConfigurationBuilder](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/request-logging-configuration-builder.md)
- [ResponseLoggingConfigurationBuilder](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/response-logging-configuration-builder.md)

### HTTP

[](#http)

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

### Utilities

[](#utilities)

- [FileWrapper](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/file-wrapper.md)
- [ApiResponse](https://www.github.com/sdks-io/apimatic-sticky-apis-php-sdk/tree/0.0.1/doc/api-response.md)

###  Health Score

30

—

LowBetter than 62% of packages

Maintenance82

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity29

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

95d 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)")

---

Tags

apimaticsdksio

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/sdksio-apimatic-sticky-apis-sdk/health.svg)

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

###  Alternatives

[square/square

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

773.9M29](/packages/square-square)[paypal/paypal-server-sdk

PayPal's SDK for interacting with the REST APIs

62833.4k16](/packages/paypal-paypal-server-sdk)

PHPackages © 2026

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