These docs are for v2. Click to read the latest docs for v3.

Create Binary v2

Send a POST to

  • production environment : https://api.lifen.fr/fhir/v2/Binary
  • test environment : https://api.post-prod.lifen.fr/fhir/v2/Binary

with a JSON body containing the content of the document encoded in base64.

Header Content-Type = "application/fhir+json" is required for this request

Example :

{
  "resourceType": "Binary",
  "contentType": "application/pdf",
  "content": "CONTENT"
}