Profile
Get the current users profle details
Authorizations
Responses
200
successful operation
application/json
400
Invalid status value
application/json
get
/profileGET /profile HTTP/1.1
Host: api.ecosuite.io/
Authorization: YOUR_API_KEY
Accept: */*
{
  "profile": {
    "email": "[email protected]",
    "firstName": "text",
    "lastName": "text",
    "timezone": "text"
  }
}Updates the current users profle details
Authorizations
Body
Refer to the /schemas/profile endpoint for the full JSON Schema definition
emailstring · emailRequired
firstNamestringRequired
lastNamestringRequired
timezonestringOptional
Responses
200
successful operation
application/json
400
Invalid status value
application/json
put
/profilePUT /profile HTTP/1.1
Host: api.ecosuite.io/
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 81
{
  "email": "[email protected]",
  "firstName": "text",
  "lastName": "text",
  "timezone": "text"
}{
  "profile": {
    "email": "[email protected]",
    "firstName": "text",
    "lastName": "text",
    "timezone": "text"
  }
}