- Added support for the
getThreadSource
endpoint (to retrieve original email source). See developer docs for more information. - Consistent usage of tabs for indentation (jeffbyrnes)
- Clean up documentation, add DocBlocks for every method of
ApiClient
(jeffbyrnes) - Clarify
model\Mailbox::toRef()
DocBlock (jeffbyrnes)
- Use correct value for all instances of
CURLOPT_SSL_VERIFYHOST
(thanks jeffbyrnes) - Improved attribute handling in model constructors
- Updated to use
require_once
instead ofrequire
(where applicable)
- Fixed use of invalid cURL option
- Update dynamic-custom-app.php example to prevent unauthorized requests from having data sent
- Added composer support
- Added support for workflows (get a list of workflows or run a manual workflow). See developer docs for more information.
- Updated examples.
- When creating a conversation or thread, the createdAt property is correctly set now.
- Fixed a typo that was causing 'closedBy' to not be set properly on a conversation.
- Fixed an issue where a conversation created without a customer id was causing an exception.
- Updated with support for new line item properties (actionType and actionSourceId). See developer docs for more information.
- Conversations and threads can now be marked as 'imported' at creation time.
- Added 'phone' conversation and thread type.
- Added a method to retrieve a list of customers for a mailbox.
- Added examples for write endpoints (create/update conversation, create/update customer).
- Conversation write endpoints added. Conversations can now be created, updated, and deleted. Threads can be created, and attachments can be created and associated with a thread.
- Customer write endpoints added. Customers can now be created and updated.
- Customers can now be searched for by name and/or email.
- Conversation now has a type property that specifies if the type of conversation is an 'email' or 'chat'.
- UserRef and CustomerRef have been removed and replaced by a PersonRef. The PersonRef class has a 'type' property that specifies if the person is a 'user' or a 'customer'.
- A new Chat thread type was added.