Python
# To use the Python SDK, install the package: # pip install memobase from memobase import MemoBaseClient client = MemoBaseClient(project_url='PROJECT_URL', api_key='PROJECT_TOKEN') uid = client.add_user({"ANY": "DATA"})
{ "data": { "id": "<string>" }, "errno": 0, "errmsg": "" }
Create a new user with additional data
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
User data for creating a new user
Successful Response
The response is of type object.
object