Download the PHP package analogbridge/analog-bridge-php without Composer
On this page you can find all versions of the php package analogbridge/analog-bridge-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download analogbridge/analog-bridge-php
More information about analogbridge/analog-bridge-php
Files in analogbridge/analog-bridge-php
Package analog-bridge-php
Short Description Analog Bridge PHP Library
License MIT
Homepage https://analogbridge.io/
Informations about the package analog-bridge-php
Analog Bridge
Analog Bridge is comprised of a JavaScript client and REST API which enables your users to import analog media directly into your app or website.
Full documentation at the Analog Bridge docs
Installation
Install with composer:
Or download the source:
Configure
Once you have your API Keys from Analog Bridge, you can initialize your configuration with your secret_key
as
Usage
Customer
Create Customer
To create a new customer using the API, usage
Retrieve a Customer
We can easily retrieve a customer's details using their customer_id
, for
example to find a customer with details with id cus_12345678
Retrieve all customers
Analog Bridge provides an interface to retrieve all your customers very easily. To retrieve all of your customers, you can use
Update a customer
Update an existing customer's information by using the cus_id
from customer
creation. Any unprovided parameters will have no effect on the customer object.
The arguments for this call are mainly the same as for the customer creation
call.
Delete a customer
If we need to delete a customer, for example id cus_123456789
, then we can
use
Order
List all customer orders
The Analog Bridge API allow us to retrieve all orders by a specific customer
.
For example we want to retrieve all orders
by customer id cus_12345678
,
we can use
List order details
If we need to retrieve the details for a specific order then we can use
Retrieve import ready orders
Once customer orders have been processed and uploaded to our Cloud, they are import-ready for your system. To retrieve the list of import ready orders, we can use
Listing Product
To retrieve the products
simply use the following interface
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/analogbridge/analog-bridge-php. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
License
This package is available as open source under the terms of the MIT License.