Skip to main content
GET
/
api
/
2.0
/
print_headers
/
{id}
/
Retrieve Print Header
curl --request GET \
  --url https://sandbox.elationemr.com/api/2.0/print_headers/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "content_type": "<string>",
  "created_date": "2023-11-07T05:31:56Z",
  "deleted_date": "2023-11-07T05:31:56Z",
  "header": "<string>",
  "header_image": {
    "content_type": "<string>",
    "file_size": 123,
    "height": 123,
    "id": 123,
    "last_updated": "2023-11-07T05:31:56Z",
    "original_filename": "<string>",
    "width": 123
  },
  "id": 123,
  "image_placement": "<string>",
  "practice": 123
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer<int64>
required

Response

200 - application/json
name
string
required

The name of the print header displayed in the app.

Maximum string length: 200
content_type
string

The type of print header; whether its pure text or is an image. {0, 1} 0=text 1=image.

Maximum string length: 5
created_date
string<date-time> | null
read-only

The timestamp when the print header was created.

deleted_date
string<date-time> | null
read-only

The timestamp when the print header was deleted.

header
string

The text header. Will be null if not a text print header.

Maximum string length: 500
header_image
object

The header image. Will be null if not an image header.

id
integer
read-only
image_placement
string

Specifies where the image header is placed. {0, 1, 2, 3} 0=left 1=right 2=center 3=fit to width.

Maximum string length: 12
practice
integer<int64>
read-only

The practice that owns this print header.