klkvsk/beeline-ord-api-client

API client for Beeline ORD system

Installs: 86

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 2

Open Issues: 0

pkg:composer/klkvsk/beeline-ord-api-client

1.50.0 2024-10-31 19:17 UTC

This package is auto-updated.

Last update: 2025-09-29 03:06:47 UTC


README

https://ord.beeline.ru/

This is not an official package

No support guaranteed.

Installation:

composer require klkvsk/beeline-ord-api-client

Usage:

<?php

$client = new \BeelineOrd\ApiClient(
    new \BeelineOrd\Authorization\Credentials('login', 'password'),
    $token, // if saved from previous session
);

/** @see src/Endpoint/ */
$client->contract()->....
$client->creative()->....
$client->invoice()->....
$client->platform()->....

// OR

$client->send(new \BeelineOrd\Request\SomethingRequest());

// save accessToken for next session:
$token = $client->getToken();