lfbn/dynalist-php-client

A PHP Client for the Dynalist API

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/lfbn/dynalist-php-client

v1.0.2 2021-04-07 22:02 UTC

This package is not auto-updated.

Last update: 2025-10-02 18:53:20 UTC


README

PHP Dynalist Client to interact with the Dynalist API.

Installation using Composer

composer require lfbn/dynalist-client

Quick view

<?php

$dynalist = DynalistApi('your-api-key');

// get all documents from a file
$fileId = 'the-file-id';
$response = $dynalist->getDocumentContent($fileId);

var_dump($response);

// send something to inbox
$response = $dynalist->sendToInbox(0, 'hi to everyone!');

var_dump($response);