Get the current users profle details
GET //profile HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Accept: */*
successful operation
{ "profile": { "email": "name@gmail.com", "firstName": "text", "lastName": "text", "timezone": "text" } }
Updates the current users profle details
Refer to the /schemas/profile endpoint for the full JSON Schema definition
PUT //profile HTTP/1.1 Host: api.ecosuite.io Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 81 { "email": "name@gmail.com", "firstName": "text", "lastName": "text", "timezone": "text" }