Records
Use a record ID to fetch record information
Path parameters
recordIdstringRequired
The record ID
Responses
200
successful operation
application/json
400
Invalid status value
application/json
get
/records/{recordId}GET /records/{recordId} HTTP/1.1
Host: api.ecosuite.io/
Accept: */*
{
  "name": "text",
  "isContract": "yes",
  "recordType": "financial",
  "contacts": [
    {
      "name": "text",
      "type": "text",
      "email": "[email protected]",
      "phone": "text",
      "voip": "text",
      "notes": "text"
    }
  ],
  "notes": [
    {
      "note": "text",
      "userName": "text",
      "created": "2025-10-31T15:43:10.050Z",
      "resolved": true,
      "comments": [
        {
          "comment": "text",
          "userName": "text",
          "created": "2025-10-31T15:43:10.050Z"
        }
      ]
    }
  ],
  "verified": false,
  "hiddenFields": [
    "text"
  ]
}Delete a record
Authorizations
Path parameters
recordIdstringRequired
The record ID
Responses
200
successful operation
application/json
Responseobject
400
Invalid status value
application/json
delete
/records/{recordId}DELETE /records/{recordId} HTTP/1.1
Host: api.ecosuite.io/
Authorization: YOUR_API_KEY
Accept: */*
{}