Skip to main content
Get specific intervention
curl --request GET \
  --url https://{tenantId}.api.nestmed.com/api/v1/visits/{visitId}/interventions/{slug} \
  --header 'Authorization: Bearer <token>'
{
  "slug": "<string>",
  "name": "<string>",
  "category": "<string>",
  "module": "<string>",
  "responseData": {
    "interventionProvided": true,
    "goalMet": true,
    "details": "<string>",
    "exceptionReason": "patient_refused",
    "otherReason": "<string>"
  },
  "metadata": {
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "createdBy": "<string>",
    "updatedBy": "<string>"
  },
  "status": "draft"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

visitId
string
required
slug
string
required

Response

200 - application/json

Intervention data.

slug
string

Unique identifier for the intervention type

name
string

Human-readable name of the intervention

category
string

Category of the intervention (e.g., teaching, skilled_nursing)

module
string

Module this intervention belongs to

responseData
object
metadata
object
status
enum<string>

Status of the intervention response

Available options:
draft,
completed,
reviewed