PHP code example of coolrunner / business-central-sdk
1. Go to this page and download the library: Download coolrunner/business-central-sdk library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
coolrunner / business-central-sdk example snippets
$sdk = \BusinessCentral\SDK::instance('my-tenant-id.onmicrosoft.com', [
// OAuth2 [Required]
'client_id' => 'Application (client) ID',
// Basic auth token [Required]
'client_secret' => '***',
// Default collection size [Optional]
// Amount of entities to load initially and per page per collection
// Can be changed on the fly on any collection instance
'default_collection_size' => 20,
// Default environment [Optional - 'production' by default]
'environment' => 'dev'
]);
$query = $sdk->query();
$query = $sdk->query();
// Navigate using ->navigateTo(...) (or shorthand ->to(...))
$query->to('Company','CompanyName')->to('invoicingCustomers'); // Equivalent of fetching from 'Company(CompanyName)/invoicingCustomers'
$collection = $query->fetch(); // Fetches the results of the query as a collection
// Fetches the first result of the query
$entity = $query->first(); // equivalent of $query->fetch()->first()
// Fetches all the results of the query
$entity = $query->all(); // Fetches all matching entities
// Fetch a single company
$company = $sdk->company('CompanyName');
// Fetch all companies available to the authorized user
$companies = $sdk->companies();
// Returns a collection of entities if the relation is a collection,
// else returns the single instance of the related entity or if none is found
$customers = $entity->relation;
// Returns a query builder pointing at the relation - Use this if you have further filters (See [Builer/Filters](#builderfilters))
$customers = $entity->relation();