Get the current users profle details
/profile
curl -L \ --url 'https://api.ecosuite.io//profile' \ --header 'Authorization: YOUR_API_KEY'
{ "profile": { "email": "hello@example.com", "firstName": "text", "lastName": "text", "timezone": "text" } }
Updates the current users profle details
curl -L \ --request PUT \ --url 'https://api.ecosuite.io//profile' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{"email":"hello@example.com","firstName":"text","lastName":"text"}'