Referrals
Update Letter
Replace an existing letter.
PUT
/
api
/
2.0
/
letters
/
{id}
/
Update Letter
curl --request PUT \
--url https://sandbox.elationemr.com/api/2.0/letters/{id}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"patient": 123,
"practice": 123,
"send_to_contact": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"middle_name": "<string>",
"npi": "<string>",
"org_name": "<string>",
"specialties": [
"<unknown>"
]
},
"attachments": [
{
"entity_date": "2023-11-07T05:31:56Z",
"entity_description": "<string>",
"entity_id": 123,
"handout": 123,
"summary": "<string>"
}
],
"body": "<string>",
"delivery_date": "2023-11-07T05:31:56Z",
"direct_message_to": "<string>",
"document_date": "2023-11-07T05:31:56Z",
"email_to": "<string>",
"failure_unacknowledged": "<string>",
"fax_attachments": true,
"fax_to": "<string>",
"referral_order": 123,
"send_out": true,
"send_to_name": "<string>",
"sign_date": "2023-11-07T05:31:56Z",
"signed_by": 123,
"subject": "<string>",
"tags": [
123
],
"viewed_at": "2023-11-07T05:31:56Z",
"with_archive": true
}
'import requests
url = "https://sandbox.elationemr.com/api/2.0/letters/{id}/"
payload = {
"patient": 123,
"practice": 123,
"send_to_contact": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"middle_name": "<string>",
"npi": "<string>",
"org_name": "<string>",
"specialties": ["<unknown>"]
},
"attachments": [
{
"entity_date": "2023-11-07T05:31:56Z",
"entity_description": "<string>",
"entity_id": 123,
"handout": 123,
"summary": "<string>"
}
],
"body": "<string>",
"delivery_date": "2023-11-07T05:31:56Z",
"direct_message_to": "<string>",
"document_date": "2023-11-07T05:31:56Z",
"email_to": "<string>",
"failure_unacknowledged": "<string>",
"fax_attachments": True,
"fax_to": "<string>",
"referral_order": 123,
"send_out": True,
"send_to_name": "<string>",
"sign_date": "2023-11-07T05:31:56Z",
"signed_by": 123,
"subject": "<string>",
"tags": [123],
"viewed_at": "2023-11-07T05:31:56Z",
"with_archive": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
patient: 123,
practice: 123,
send_to_contact: {
id: 123,
first_name: '<string>',
last_name: '<string>',
middle_name: '<string>',
npi: '<string>',
org_name: '<string>',
specialties: ['<unknown>']
},
attachments: [
{
entity_date: '2023-11-07T05:31:56Z',
entity_description: '<string>',
entity_id: 123,
handout: 123,
summary: '<string>'
}
],
body: JSON.stringify('<string>'),
delivery_date: '2023-11-07T05:31:56Z',
direct_message_to: '<string>',
document_date: '2023-11-07T05:31:56Z',
email_to: '<string>',
failure_unacknowledged: '<string>',
fax_attachments: true,
fax_to: '<string>',
referral_order: 123,
send_out: true,
send_to_name: '<string>',
sign_date: '2023-11-07T05:31:56Z',
signed_by: 123,
subject: '<string>',
tags: [123],
viewed_at: '2023-11-07T05:31:56Z',
with_archive: true
})
};
fetch('https://sandbox.elationemr.com/api/2.0/letters/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.elationemr.com/api/2.0/letters/{id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'patient' => 123,
'practice' => 123,
'send_to_contact' => [
'id' => 123,
'first_name' => '<string>',
'last_name' => '<string>',
'middle_name' => '<string>',
'npi' => '<string>',
'org_name' => '<string>',
'specialties' => [
'<unknown>'
]
],
'attachments' => [
[
'entity_date' => '2023-11-07T05:31:56Z',
'entity_description' => '<string>',
'entity_id' => 123,
'handout' => 123,
'summary' => '<string>'
]
],
'body' => '<string>',
'delivery_date' => '2023-11-07T05:31:56Z',
'direct_message_to' => '<string>',
'document_date' => '2023-11-07T05:31:56Z',
'email_to' => '<string>',
'failure_unacknowledged' => '<string>',
'fax_attachments' => true,
'fax_to' => '<string>',
'referral_order' => 123,
'send_out' => true,
'send_to_name' => '<string>',
'sign_date' => '2023-11-07T05:31:56Z',
'signed_by' => 123,
'subject' => '<string>',
'tags' => [
123
],
'viewed_at' => '2023-11-07T05:31:56Z',
'with_archive' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox.elationemr.com/api/2.0/letters/{id}/"
payload := strings.NewReader("{\n \"patient\": 123,\n \"practice\": 123,\n \"send_to_contact\": {\n \"id\": 123,\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"middle_name\": \"<string>\",\n \"npi\": \"<string>\",\n \"org_name\": \"<string>\",\n \"specialties\": [\n \"<unknown>\"\n ]\n },\n \"attachments\": [\n {\n \"entity_date\": \"2023-11-07T05:31:56Z\",\n \"entity_description\": \"<string>\",\n \"entity_id\": 123,\n \"handout\": 123,\n \"summary\": \"<string>\"\n }\n ],\n \"body\": \"<string>\",\n \"delivery_date\": \"2023-11-07T05:31:56Z\",\n \"direct_message_to\": \"<string>\",\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"email_to\": \"<string>\",\n \"failure_unacknowledged\": \"<string>\",\n \"fax_attachments\": true,\n \"fax_to\": \"<string>\",\n \"referral_order\": 123,\n \"send_out\": true,\n \"send_to_name\": \"<string>\",\n \"sign_date\": \"2023-11-07T05:31:56Z\",\n \"signed_by\": 123,\n \"subject\": \"<string>\",\n \"tags\": [\n 123\n ],\n \"viewed_at\": \"2023-11-07T05:31:56Z\",\n \"with_archive\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://sandbox.elationemr.com/api/2.0/letters/{id}/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"patient\": 123,\n \"practice\": 123,\n \"send_to_contact\": {\n \"id\": 123,\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"middle_name\": \"<string>\",\n \"npi\": \"<string>\",\n \"org_name\": \"<string>\",\n \"specialties\": [\n \"<unknown>\"\n ]\n },\n \"attachments\": [\n {\n \"entity_date\": \"2023-11-07T05:31:56Z\",\n \"entity_description\": \"<string>\",\n \"entity_id\": 123,\n \"handout\": 123,\n \"summary\": \"<string>\"\n }\n ],\n \"body\": \"<string>\",\n \"delivery_date\": \"2023-11-07T05:31:56Z\",\n \"direct_message_to\": \"<string>\",\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"email_to\": \"<string>\",\n \"failure_unacknowledged\": \"<string>\",\n \"fax_attachments\": true,\n \"fax_to\": \"<string>\",\n \"referral_order\": 123,\n \"send_out\": true,\n \"send_to_name\": \"<string>\",\n \"sign_date\": \"2023-11-07T05:31:56Z\",\n \"signed_by\": 123,\n \"subject\": \"<string>\",\n \"tags\": [\n 123\n ],\n \"viewed_at\": \"2023-11-07T05:31:56Z\",\n \"with_archive\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.elationemr.com/api/2.0/letters/{id}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"patient\": 123,\n \"practice\": 123,\n \"send_to_contact\": {\n \"id\": 123,\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"middle_name\": \"<string>\",\n \"npi\": \"<string>\",\n \"org_name\": \"<string>\",\n \"specialties\": [\n \"<unknown>\"\n ]\n },\n \"attachments\": [\n {\n \"entity_date\": \"2023-11-07T05:31:56Z\",\n \"entity_description\": \"<string>\",\n \"entity_id\": 123,\n \"handout\": 123,\n \"summary\": \"<string>\"\n }\n ],\n \"body\": \"<string>\",\n \"delivery_date\": \"2023-11-07T05:31:56Z\",\n \"direct_message_to\": \"<string>\",\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"email_to\": \"<string>\",\n \"failure_unacknowledged\": \"<string>\",\n \"fax_attachments\": true,\n \"fax_to\": \"<string>\",\n \"referral_order\": 123,\n \"send_out\": true,\n \"send_to_name\": \"<string>\",\n \"sign_date\": \"2023-11-07T05:31:56Z\",\n \"signed_by\": 123,\n \"subject\": \"<string>\",\n \"tags\": [\n 123\n ],\n \"viewed_at\": \"2023-11-07T05:31:56Z\",\n \"with_archive\": true\n}"
response = http.request(request)
puts response.read_body{
"patient": 123,
"practice": 123,
"send_to_contact": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"middle_name": "<string>",
"npi": "<string>",
"org_name": "<string>",
"specialties": [
"<unknown>"
]
},
"attachments": [
{
"entity_date": "2023-11-07T05:31:56Z",
"entity_description": "<string>",
"entity_id": 123,
"entity_type": 123,
"handout": 123,
"id": 123,
"summary": "<string>"
}
],
"body": "<string>",
"created_date": "2023-11-07T05:31:56Z",
"deleted_date": "2023-11-07T05:31:56Z",
"delivery_date": "2023-11-07T05:31:56Z",
"direct_message_status": "<string>",
"direct_message_to": "<string>",
"display_to": "<string>",
"document_date": "2023-11-07T05:31:56Z",
"email_to": "<string>",
"failure_unacknowledged": "<string>",
"fax_attachments": true,
"fax_status": "<string>",
"fax_to": "<string>",
"id": 123,
"is_processed": true,
"letter_type": "<string>",
"referral_order": 123,
"send_out": true,
"send_to_elation_user": 123,
"send_to_name": "<string>",
"sign_date": "2023-11-07T05:31:56Z",
"signed_by": 123,
"subject": "<string>",
"tags": [
123
],
"to_number": "<string>",
"viewed_at": "2023-11-07T05:31:56Z",
"with_archive": true
}Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Body
application/json
Show child attributes
Show child attributes
Show child attributes
Show child attributes
The body of the letter.
Available options:
direct, email, emr, fax, passport, printed Maximum string length:
200Maximum string length:
200Maximum string length:
20Maximum string length:
200The user who signed the letter.
The subject of the letter (Not needed with referral_order).
Maximum string length:
200A list of Document Tags associated with the letter.
Response
200 - application/json
Show child attributes
Show child attributes
Show child attributes
Show child attributes
The body of the letter.
Available options:
direct, email, emr, fax, passport, printed Maximum string length:
200Maximum string length:
200Maximum string length:
20If a letter is sent to another elation user, this will be that user's id.
Maximum string length:
200The user who signed the letter.
The subject of the letter (Not needed with referral_order).
Maximum string length:
200A list of Document Tags associated with the letter.
Was this page helpful?
⌘I
Update Letter
curl --request PUT \
--url https://sandbox.elationemr.com/api/2.0/letters/{id}/ \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"patient": 123,
"practice": 123,
"send_to_contact": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"middle_name": "<string>",
"npi": "<string>",
"org_name": "<string>",
"specialties": [
"<unknown>"
]
},
"attachments": [
{
"entity_date": "2023-11-07T05:31:56Z",
"entity_description": "<string>",
"entity_id": 123,
"handout": 123,
"summary": "<string>"
}
],
"body": "<string>",
"delivery_date": "2023-11-07T05:31:56Z",
"direct_message_to": "<string>",
"document_date": "2023-11-07T05:31:56Z",
"email_to": "<string>",
"failure_unacknowledged": "<string>",
"fax_attachments": true,
"fax_to": "<string>",
"referral_order": 123,
"send_out": true,
"send_to_name": "<string>",
"sign_date": "2023-11-07T05:31:56Z",
"signed_by": 123,
"subject": "<string>",
"tags": [
123
],
"viewed_at": "2023-11-07T05:31:56Z",
"with_archive": true
}
'import requests
url = "https://sandbox.elationemr.com/api/2.0/letters/{id}/"
payload = {
"patient": 123,
"practice": 123,
"send_to_contact": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"middle_name": "<string>",
"npi": "<string>",
"org_name": "<string>",
"specialties": ["<unknown>"]
},
"attachments": [
{
"entity_date": "2023-11-07T05:31:56Z",
"entity_description": "<string>",
"entity_id": 123,
"handout": 123,
"summary": "<string>"
}
],
"body": "<string>",
"delivery_date": "2023-11-07T05:31:56Z",
"direct_message_to": "<string>",
"document_date": "2023-11-07T05:31:56Z",
"email_to": "<string>",
"failure_unacknowledged": "<string>",
"fax_attachments": True,
"fax_to": "<string>",
"referral_order": 123,
"send_out": True,
"send_to_name": "<string>",
"sign_date": "2023-11-07T05:31:56Z",
"signed_by": 123,
"subject": "<string>",
"tags": [123],
"viewed_at": "2023-11-07T05:31:56Z",
"with_archive": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
patient: 123,
practice: 123,
send_to_contact: {
id: 123,
first_name: '<string>',
last_name: '<string>',
middle_name: '<string>',
npi: '<string>',
org_name: '<string>',
specialties: ['<unknown>']
},
attachments: [
{
entity_date: '2023-11-07T05:31:56Z',
entity_description: '<string>',
entity_id: 123,
handout: 123,
summary: '<string>'
}
],
body: JSON.stringify('<string>'),
delivery_date: '2023-11-07T05:31:56Z',
direct_message_to: '<string>',
document_date: '2023-11-07T05:31:56Z',
email_to: '<string>',
failure_unacknowledged: '<string>',
fax_attachments: true,
fax_to: '<string>',
referral_order: 123,
send_out: true,
send_to_name: '<string>',
sign_date: '2023-11-07T05:31:56Z',
signed_by: 123,
subject: '<string>',
tags: [123],
viewed_at: '2023-11-07T05:31:56Z',
with_archive: true
})
};
fetch('https://sandbox.elationemr.com/api/2.0/letters/{id}/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://sandbox.elationemr.com/api/2.0/letters/{id}/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'patient' => 123,
'practice' => 123,
'send_to_contact' => [
'id' => 123,
'first_name' => '<string>',
'last_name' => '<string>',
'middle_name' => '<string>',
'npi' => '<string>',
'org_name' => '<string>',
'specialties' => [
'<unknown>'
]
],
'attachments' => [
[
'entity_date' => '2023-11-07T05:31:56Z',
'entity_description' => '<string>',
'entity_id' => 123,
'handout' => 123,
'summary' => '<string>'
]
],
'body' => '<string>',
'delivery_date' => '2023-11-07T05:31:56Z',
'direct_message_to' => '<string>',
'document_date' => '2023-11-07T05:31:56Z',
'email_to' => '<string>',
'failure_unacknowledged' => '<string>',
'fax_attachments' => true,
'fax_to' => '<string>',
'referral_order' => 123,
'send_out' => true,
'send_to_name' => '<string>',
'sign_date' => '2023-11-07T05:31:56Z',
'signed_by' => 123,
'subject' => '<string>',
'tags' => [
123
],
'viewed_at' => '2023-11-07T05:31:56Z',
'with_archive' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://sandbox.elationemr.com/api/2.0/letters/{id}/"
payload := strings.NewReader("{\n \"patient\": 123,\n \"practice\": 123,\n \"send_to_contact\": {\n \"id\": 123,\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"middle_name\": \"<string>\",\n \"npi\": \"<string>\",\n \"org_name\": \"<string>\",\n \"specialties\": [\n \"<unknown>\"\n ]\n },\n \"attachments\": [\n {\n \"entity_date\": \"2023-11-07T05:31:56Z\",\n \"entity_description\": \"<string>\",\n \"entity_id\": 123,\n \"handout\": 123,\n \"summary\": \"<string>\"\n }\n ],\n \"body\": \"<string>\",\n \"delivery_date\": \"2023-11-07T05:31:56Z\",\n \"direct_message_to\": \"<string>\",\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"email_to\": \"<string>\",\n \"failure_unacknowledged\": \"<string>\",\n \"fax_attachments\": true,\n \"fax_to\": \"<string>\",\n \"referral_order\": 123,\n \"send_out\": true,\n \"send_to_name\": \"<string>\",\n \"sign_date\": \"2023-11-07T05:31:56Z\",\n \"signed_by\": 123,\n \"subject\": \"<string>\",\n \"tags\": [\n 123\n ],\n \"viewed_at\": \"2023-11-07T05:31:56Z\",\n \"with_archive\": true\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://sandbox.elationemr.com/api/2.0/letters/{id}/")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"patient\": 123,\n \"practice\": 123,\n \"send_to_contact\": {\n \"id\": 123,\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"middle_name\": \"<string>\",\n \"npi\": \"<string>\",\n \"org_name\": \"<string>\",\n \"specialties\": [\n \"<unknown>\"\n ]\n },\n \"attachments\": [\n {\n \"entity_date\": \"2023-11-07T05:31:56Z\",\n \"entity_description\": \"<string>\",\n \"entity_id\": 123,\n \"handout\": 123,\n \"summary\": \"<string>\"\n }\n ],\n \"body\": \"<string>\",\n \"delivery_date\": \"2023-11-07T05:31:56Z\",\n \"direct_message_to\": \"<string>\",\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"email_to\": \"<string>\",\n \"failure_unacknowledged\": \"<string>\",\n \"fax_attachments\": true,\n \"fax_to\": \"<string>\",\n \"referral_order\": 123,\n \"send_out\": true,\n \"send_to_name\": \"<string>\",\n \"sign_date\": \"2023-11-07T05:31:56Z\",\n \"signed_by\": 123,\n \"subject\": \"<string>\",\n \"tags\": [\n 123\n ],\n \"viewed_at\": \"2023-11-07T05:31:56Z\",\n \"with_archive\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.elationemr.com/api/2.0/letters/{id}/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"patient\": 123,\n \"practice\": 123,\n \"send_to_contact\": {\n \"id\": 123,\n \"first_name\": \"<string>\",\n \"last_name\": \"<string>\",\n \"middle_name\": \"<string>\",\n \"npi\": \"<string>\",\n \"org_name\": \"<string>\",\n \"specialties\": [\n \"<unknown>\"\n ]\n },\n \"attachments\": [\n {\n \"entity_date\": \"2023-11-07T05:31:56Z\",\n \"entity_description\": \"<string>\",\n \"entity_id\": 123,\n \"handout\": 123,\n \"summary\": \"<string>\"\n }\n ],\n \"body\": \"<string>\",\n \"delivery_date\": \"2023-11-07T05:31:56Z\",\n \"direct_message_to\": \"<string>\",\n \"document_date\": \"2023-11-07T05:31:56Z\",\n \"email_to\": \"<string>\",\n \"failure_unacknowledged\": \"<string>\",\n \"fax_attachments\": true,\n \"fax_to\": \"<string>\",\n \"referral_order\": 123,\n \"send_out\": true,\n \"send_to_name\": \"<string>\",\n \"sign_date\": \"2023-11-07T05:31:56Z\",\n \"signed_by\": 123,\n \"subject\": \"<string>\",\n \"tags\": [\n 123\n ],\n \"viewed_at\": \"2023-11-07T05:31:56Z\",\n \"with_archive\": true\n}"
response = http.request(request)
puts response.read_body{
"patient": 123,
"practice": 123,
"send_to_contact": {
"id": 123,
"first_name": "<string>",
"last_name": "<string>",
"middle_name": "<string>",
"npi": "<string>",
"org_name": "<string>",
"specialties": [
"<unknown>"
]
},
"attachments": [
{
"entity_date": "2023-11-07T05:31:56Z",
"entity_description": "<string>",
"entity_id": 123,
"entity_type": 123,
"handout": 123,
"id": 123,
"summary": "<string>"
}
],
"body": "<string>",
"created_date": "2023-11-07T05:31:56Z",
"deleted_date": "2023-11-07T05:31:56Z",
"delivery_date": "2023-11-07T05:31:56Z",
"direct_message_status": "<string>",
"direct_message_to": "<string>",
"display_to": "<string>",
"document_date": "2023-11-07T05:31:56Z",
"email_to": "<string>",
"failure_unacknowledged": "<string>",
"fax_attachments": true,
"fax_status": "<string>",
"fax_to": "<string>",
"id": 123,
"is_processed": true,
"letter_type": "<string>",
"referral_order": 123,
"send_out": true,
"send_to_elation_user": 123,
"send_to_name": "<string>",
"sign_date": "2023-11-07T05:31:56Z",
"signed_by": 123,
"subject": "<string>",
"tags": [
123
],
"to_number": "<string>",
"viewed_at": "2023-11-07T05:31:56Z",
"with_archive": true
}