Skip to main content
Check Bulk Export Status
curl --request GET \
  --url https://{tenant_id}.api.nestmed.com/fhir/r4/bulk-status/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "transactionTime": "2023-11-07T05:31:56Z",
  "request": "<string>",
  "requiresAccessToken": true,
  "output": [
    {
      "type": "<string>",
      "count": 123,
      "url": "<string>"
    }
  ],
  "deleted": [
    {
      "type": "<string>",
      "url": "<string>"
    }
  ],
  "error": [
    {
      "type": "<string>",
      "count": 123,
      "url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

jobId
string
required

Bulk export job ID

Response

Export complete

transactionTime
string<date-time>
request
string
requiresAccessToken
boolean
output
object[]
deleted
object[]
error
object[]