Starting with version v0.5 (currently on the development branch, but you can immediately pull it out and use it), you can use post_internal to add data:
Intended for internal post calls, this method is not rate limited, authentication is not checked and pre-request events are not raised. Adds one or more documents to a resource. Each document is validated against the domain schema. If validation passes the document is inserted and ID_FIELD, LAST_UPDATED and DATE_CREATED along with a link to the document are returned. If validation fails, a list of validation issues is returned.
It probably makes sense to add more internal methods to cover all the CRUD operations that are now available through HTTP. However, you can still reference them.
Update: v0.5 was released using the _internal methods available for all CRUD operations.
source share