put https://fhir-api.zapehr.com/r4b/Endpoint/
Endpoint on the FHIR specification website.
The technical details of an endpoint that can be used for electronic services, such as for web services providing XDS.b or a REST endpoint for another FHIR server. This may include any security context information.
The body should be a valid FHIR object for Endpoint.
Here is an example:
{
"resourceType": "Endpoint",
"id": "direct-endpoint",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: direct-endpoint</p><p><b>status</b>: active</p><p><b>connectionType</b>: direct-project (Details: [not stated] code direct-project = 'direct-project', stated as 'null')</p><p><b>name</b>: MARTIN SMIETANKA</p><p><b>managingOrganization</b>: <a>Organization/299</a></p><p><b>payloadType</b>: urn:hl7-org:sdwg:ccda-structuredBody:1.1 <span>(Details : {urn:oid:1.3.6.1.4.1.19376.1.2.3 code 'urn:hl7-org:sdwg:ccda-structuredBody:1.1' = 'urn:hl7-org:sdwg:ccda-structuredBody:1.1)</span></p><p><b>address</b>: <a>[email protected]</a></p></div>"
},
"status": "active",
"connectionType": {
"code": "direct-project"
},
"name": "MARTIN SMIETANKA",
"managingOrganization": {
"reference": "Organization/299"
},
"payloadType": [
{
"coding": [
{
"system": "urn:oid:1.3.6.1.4.1.19376.1.2.3",
"code": "urn:hl7-org:sdwg:ccda-structuredBody:1.1"
}
]
}
],
"address": "mailto:[email protected]"
}
You can reference the FHIR documentation to determine the format for Endpoint
.