Skip to main content
GET
/
notes
/
{note_id}
/
detail
Get Note Detail
curl --request GET \
  --url https://api.decodahealth.com/notes/{note_id}/detail \
  --header 'API-KEY: <api-key>' \
  --header 'TENANT: <tenant>'
{
  "id": "<string>",
  "parentNoteId": "<string>",
  "version": 123,
  "currentVersion": 123,
  "aiGenerated": true,
  "patient": {
    "id": "<string>",
    "type": "PROVIDER",
    "createdDate": "2023-11-07T05:31:56Z",
    "firstName": "<string>",
    "lastName": "<string>",
    "phoneNumber": "<string>",
    "email": "<string>",
    "locationId": "<string>",
    "externalId": "<string>",
    "address": "<string>",
    "addressLineTwo": "<string>",
    "city": "<string>",
    "state": "<string>",
    "zipCode": "<string>",
    "country": "<string>",
    "addressValid": true,
    "meta": {},
    "isArchived": true,
    "primaryLocationId": "<string>",
    "gender": "<string>",
    "dateOfBirth": "2023-12-25",
    "patientMedications": [
      "<string>"
    ],
    "onSchedulingBlacklist": true,
    "surchargeDisabled": true,
    "tags": [
      {
        "id": "<string>",
        "name": "<string>",
        "isActive": true,
        "createdDate": "2023-11-07T05:31:56Z",
        "emoji": "<string>",
        "color": "<string>",
        "updatedDate": "2023-11-07T05:31:56Z"
      }
    ],
    "creditBalance": 123,
    "preferredProviderId": "<string>",
    "memberships": [
      {
        "id": "<string>",
        "membership": {
          "id": "<string>",
          "name": "<string>",
          "textColor": "<string>"
        },
        "startDate": "2023-11-07T05:31:56Z",
        "status": "ACTIVE"
      }
    ],
    "goalWeight": 123,
    "measurements": [
      {
        "patientId": "<string>",
        "createdDate": "2023-11-07T05:31:56Z",
        "id": "<string>",
        "height": 123,
        "weight": 123,
        "systolicBp": 123,
        "diastolicBp": 123,
        "pulse": 123,
        "temperature": 123,
        "waistCircumference": 123,
        "noteId": "<string>",
        "measurementDate": "2023-11-07T05:31:56Z",
        "eventId": "<string>",
        "creatorId": "<string>"
      }
    ],
    "medications": [
      {
        "id": "<string>",
        "createdDate": "2023-11-07T05:31:56Z",
        "patientId": "<string>",
        "name": "<string>",
        "providerId": "<string>",
        "sideEffects": "<string>",
        "administrationLocation": "<string>",
        "amount": 123,
        "unit": "AMPOULES",
        "lotNumber": "<string>",
        "stockId": "<string>",
        "noteId": "<string>",
        "doseDate": "2023-11-07T05:31:56Z",
        "comment": "<string>",
        "frequency": "<string>",
        "quantity": 123,
        "isUsedAsTemplate": true,
        "signedOffProviderId": "<string>",
        "signedOffDate": "2023-11-07T05:31:56Z",
        "provider": {
          "id": "<string>",
          "type": "PROVIDER",
          "firstName": "<string>",
          "lastName": "<string>",
          "phoneNumber": "<string>",
          "email": "<string>",
          "locationId": "<string>"
        }
      }
    ],
    "optedOutOfSms": true,
    "appointmentCount": 123,
    "totalSpent": 123
  },
  "createdDate": "2023-11-07T05:31:56Z",
  "eventId": "<string>",
  "duration": 123,
  "content": "<string>",
  "summary": "<string>",
  "template": {
    "id": "<string>",
    "name": "<string>",
    "createdDate": "2023-11-07T05:31:56Z",
    "contentTemplate": "<string>",
    "attachments": []
  },
  "transcript": {
    "id": "<string>",
    "transcript": "<string>",
    "createdDate": "2023-11-07T05:31:56Z",
    "duration": 123
  },
  "providers": [],
  "sourceDocuments": [],
  "icd10Codes": [
    {
      "code": "<string>",
      "shortDesc": "<string>",
      "longDesc": "<string>",
      "categorical": true
    }
  ],
  "cptCodes": [
    {
      "code": "<string>",
      "category1": "<string>",
      "category2": "<string>",
      "category3": "<string>",
      "category4": "<string>",
      "category5": "<string>",
      "category6": "<string>",
      "description": "<string>",
      "notes": "<string>"
    }
  ],
  "signedOffProviderId": "<string>",
  "signedOffDate": "2023-11-07T05:31:56Z"
}

Headers

TENANT
string
required

The tenant you are making this request on behalf of

API-KEY
string
required

Your api key

Path Parameters

note_id
string
required

Response

Successful Response

id
string
required
parentNoteId
string
required
version
integer
required
currentVersion
integer
required
aiGenerated
boolean
required
patient
PatientDetail · object
required
createdDate
string<date-time>
required
eventId
string | null
duration
integer | null
content
string | null
summary
string | null
template
NoteTemplateTableItem · object
transcript
NoteTranscriptSummary · object
providers
ProviderTiny · object[]
sourceDocuments
DocumentSummary · object[]
icd10Codes
ICDTenCode · object[] | null
cptCodes
CPTCode · object[] | null
signedOffProviderId
string | null
signedOffDate
string<date-time> | null