lfbn/dynalist-php-client

A PHP Client for the Dynalist API

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

This package is not auto-updated.

Last update: 2025-04-03 16:43:53 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);