hochdreih / bappsy-sdk-php
There is no license information available for the latest version (dev-master) of this package.
Bappsy - Business Application System
dev-master
2021-02-21 09:27 UTC
Requires
- pear/http_request2: ^2.4
This package is auto-updated.
Last update: 2025-03-21 18:05:16 UTC
README
This SDK will help you to build your own Integrations for Business Application System (Bappsy) by hochdreih. If you are not already a Customer you can get your account here The Bappsy API provides you with over 400 Data Models and around 2500 Endpoints.
Bappsy can manage nearly everything that is required to run a modern Enterprise
Installation
composer require hochdreih/bappsy
Authentication
- Get your API Key
- Set up your App
- provide it in the constructor
<?php $bappsy = new Bapsy("<yourAPIKey>");
Examples
General Usage
<?php require_once __DIR__ . '/../vendor/autoload.php'; // Autoload files using Composer autoload use Bappsy\Bappsy; $bappsy = new Bappsy("<yourAPIKey>"); $get = $bappsy->get($endpoint, $q, $prePart, $postPart); $getDetail = $bappsy->getDetail($endpoint, $id, $q, $prePart, $postPart); $copy = $bappsy->copy( $endpoint, $id); $delete = $bappsy->delete( $type, $id); $update = $bappsy->update($endpoint, $id, $data, $q, $prePart, $postPart); $create = $bappsy->create($endpoint, $data, $prePart, $postPart);
Use Endpoints directly
The SDK Provides you with
get() getDetail() create() update() delete()
methods for general data manipulation
Find all Endpoints in the API Documentation
Credits
Made with ❤️ at Tegernsee and Erding by hochdreih