POST api/v1/{practiceXRef}/patientevent/patientevents/cancel

Cancel patient visit

Request Information

URI Parameters

NameDescriptionTypeAdditional information
practiceXRef

Practice external id

string

Required

Body Parameters

Com.Healthbridge.Hhas.PatientEvent.Interface.Commands.CancelPatientVisit
NameDescriptionTypeAdditional information
PatientEventId

globally unique identifier

None.

PracticeId

globally unique identifier

None.

PatientEventXRef

string

None.

Reason

string

None.

CorrelationIds

Collection of string

None.

OriginatedSystem

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PatientEventId": "6c7d2f24-4746-4dc7-997f-4249035bd11b",
  "PracticeId": "b333cd8d-e373-4750-9c71-df8d6c30263b",
  "PatientEventXRef": "sample string 3",
  "Reason": "sample string 4",
  "CorrelationIds": [
    "sample string 1",
    "sample string 2"
  ],
  "OriginatedSystem": "sample string 5"
}

application/xml, text/xml

Sample:
<CancelPatientVisit xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.PatientEvent.Interface.Commands">
  <CorrelationIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://mpsapi.healthbridge.com/platform/core/v1/command/">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </CorrelationIds>
  <OriginatedSystem xmlns="http://mpsapi.healthbridge.com/platform/core/v1/command/">sample string 5</OriginatedSystem>
  <PatientEventId>6c7d2f24-4746-4dc7-997f-4249035bd11b</PatientEventId>
  <PatientEventXRef>sample string 3</PatientEventXRef>
  <PracticeId>b333cd8d-e373-4750-9c71-df8d6c30263b</PracticeId>
  <Reason>sample string 4</Reason>
</CancelPatientVisit>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'System.Web.Http.ModelBinding.JQueryMvcFormUrlEncodedFormatter' to write type 'CancelPatientVisit'.

Response Information

Resource Description

Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.Guid
NameDescriptionTypeAdditional information
Sucess

boolean

None.

ResponseCode

integer

None.

ResponseMessage

string

None.

Data

globally unique identifier

None.

Links

Collection of Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiLink

None.

Response Formats

application/json, text/json

Sample:
{
  "Sucess": true,
  "ResponseCode": 2,
  "ResponseMessage": "sample string 3",
  "Data": "127e5720-95a7-48d9-9106-af131a3c8c0d",
  "Links": [
    {
      "Rel": "sample string 1",
      "HRef": "sample string 2"
    },
    {
      "Rel": "sample string 1",
      "HRef": "sample string 2"
    }
  ]
}

application/xml, text/xml

Sample:
<RestApiResultOfguid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects">
  <Data>127e5720-95a7-48d9-9106-af131a3c8c0d</Data>
  <Links>
    <RestApiLink>
      <HRef>sample string 2</HRef>
      <Rel>sample string 1</Rel>
    </RestApiLink>
    <RestApiLink>
      <HRef>sample string 2</HRef>
      <Rel>sample string 1</Rel>
    </RestApiLink>
  </Links>
  <ResponseCode>2</ResponseCode>
  <ResponseMessage>sample string 3</ResponseMessage>
  <Sucess>true</Sucess>
</RestApiResultOfguid>