Releases: lanlin/nylas-php
Releases · lanlin/nylas-php
smart methods for message & thread
batch request support for some methods
Most of the methods that have the get & delete prefix support batch request.
For more detail about the batch request, you should have to read the source code.
Sorry, I have no time to write documents.
$id = 'id_xxx';
$ids = ['id_xxx', 'id_yyy', ...];
// one per time
$dataA = $nylas->Contacts()->Contact()->getContact($id);
$dataB = $nylas->Contacts()->Contact()->deleteContact($id);
// batch request
$dataC = $nylas->Contacts()->Contact()->getContact($ids);
$dataD = $nylas->Contacts()->Contact()->deleteContact($ids);
Nylas API 2.0 PHP SDK
Nylas-PHP SDK Upgraded!!!
What's new?
- API 2.0 support
- All Nylas APIs have been implemented within this SDK.
- Chained calls and good code hints, easy to use
- Support send & get message in raw type
- Support async multiple upload & download
-- Contact picture download
-- File upload & download - The parameters that required by methods almost the same as nylas official api required.
partially tested
partially tested.
untested version
untested nylas API 2.0 package.