POST api/v1/{practiceId}/clinical/pathologyreports/{pathologyReportId}/redeliver
Re-submit existing pathology report which we failed to deliver in the past due to missed patient
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| practiceId | globally unique identifier |
Required |
|
| pathologyReportId |
pathology report id |
globally unique identifier |
Required |
Body Parameters
Com.Healthbridge.Hhas.Clinical.Interface.Commands.DeliverPathologyReport| Name | Description | Type | Additional information |
|---|---|---|---|
| PracticeId | globally unique identifier |
None. |
|
| PathologyReportId | globally unique identifier |
None. |
|
| TreatingProviderId | globally unique identifier |
None. |
|
| MatchedPatientIds | Collection of globally unique identifier |
None. |
|
| CorrelationIds | Collection of string |
None. |
|
| OriginatedSystem | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PracticeId": "ae53c036-e288-4e9c-add2-20b7c28d7428",
"PathologyReportId": "4003f59a-4cc8-475b-b526-e1b87980636b",
"TreatingProviderId": "f8d6338f-b7e3-4d9e-9fc6-fe4ccad1e5a9",
"MatchedPatientIds": [
"d1d7791d-f3cb-4e57-bb7c-616f75e93682",
"0436dfc2-f6e0-4458-8694-720bceee225a"
],
"CorrelationIds": [
"sample string 1",
"sample string 2"
],
"OriginatedSystem": "sample string 4"
}
application/xml, text/xml
Sample:
<DeliverPathologyReport xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Hhas.Clinical.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 4</OriginatedSystem>
<MatchedPatientIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>d1d7791d-f3cb-4e57-bb7c-616f75e93682</d2p1:guid>
<d2p1:guid>0436dfc2-f6e0-4458-8694-720bceee225a</d2p1:guid>
</MatchedPatientIds>
<PathologyReportId>4003f59a-4cc8-475b-b526-e1b87980636b</PathologyReportId>
<PracticeId>ae53c036-e288-4e9c-add2-20b7c28d7428</PracticeId>
<TreatingProviderId>f8d6338f-b7e3-4d9e-9fc6-fe4ccad1e5a9</TreatingProviderId>
</DeliverPathologyReport>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects.RestApiResultOfSystem.NullableOfSystem.Guid| Name | Description | Type | Additional 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": "da8e36c0-50b7-4ee7-af45-8be40afe371f",
"Links": [
{
"Rel": "sample string 1",
"HRef": "sample string 2"
},
{
"Rel": "sample string 1",
"HRef": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<RestApiResultOfNullableOfguid5F2dSckg xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Com.Healthbridge.Core.CommonDomain.Interface.ValueObjects">
<Data>da8e36c0-50b7-4ee7-af45-8be40afe371f</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>
</RestApiResultOfNullableOfguid5F2dSckg>