Skip to main content
Cancel visit
curl --request DELETE \
  --url https://{tenantId}.api.nestmed.com/api/v1/visits/{visitId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "<string>",
  "cancelledBy": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

visitId
string
required

Body

application/json
reason
string
cancelledBy
string

Response

204

Visit cancelled successfully.