Skip to content

This is a composer package that wraps the dynamics web api that you can create an application user to authenticate to.

License

Notifications You must be signed in to change notification settings

dynamics-tools/web-api-php-wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dynamics Web API PHP Wrapper

Introduction

This package is not intended to be an in-depth SDK for Microsoft Dynamics. Its main purpose is to simplify the process of authentication and request setup for users of Dynamics Web API.

Authentication

We utilize server-to-server OAuth authentication via an application user. To successfully authenticate, you'll need to set the following environment variables:

APPLICATION_ID: Application (Client) ID

APPLICATION_SECRET: Application (Client) Secret

TENANT_ID: Tenant ID

INSTANCE_URL: Dynamics (Instance) URL

API Documentation

The API documentation for this version of the Dynamics Web API can be found here.

Usage Example

Ensure the environment variables are set before running the example.

Using the Client

use DynamicsWebApi\Client;
use DynamicsWebApi\ClientFactory;

require_once 'vendor/autoload.php';

$client = Client::createInstance();
$response = $client->request('/CloneAsSolution', 'POST', [
'ParentSolutionUniqueName' => 'MySolution',
'DisplayName' => 'MySolution',
'VersionNumber' => '1.12.0.0'
]);

$responseJson = json_decode($response->getBody()->getContents(), true);
echo $responseJson['SolutionId'];

Using the Helper

use DynamicsWebApi\Helper;

require_once 'vendor/autoload.php';

$helper = new Helper();
$helper->updateEntity('pluginassemblies', '38938383-383838-392912-192882', ['name' => 'MyPluginAssembly'], '9.2');
$helper->publishAllChanges();

About

This is a composer package that wraps the dynamics web api that you can create an application user to authenticate to.

Resources

License

Stars

Watchers

Forks

Packages

No packages published