2019-10-25 11:27:28 +01:00
|
|
|
send_pdf_letter_request = {
|
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
|
|
|
"description": "POST send uploaded pdf letter",
|
|
|
|
|
"type": "object",
|
|
|
|
|
"title": "Send an uploaded pdf letter",
|
|
|
|
|
"properties": {
|
2019-10-25 16:13:22 +01:00
|
|
|
"postage": {"type": "string", "format": "postage"},
|
2019-10-25 11:27:28 +01:00
|
|
|
"filename": {"type": "string"},
|
|
|
|
|
"created_by": {"type": "string"},
|
|
|
|
|
"file_id": {"type": "string"},
|
2020-01-02 16:35:18 +00:00
|
|
|
"recipient_address": {"type": "string"}
|
2019-10-25 11:27:28 +01:00
|
|
|
},
|
2020-01-02 16:35:18 +00:00
|
|
|
"required": ["postage", "filename", "created_by", "file_id", "recipient_address"]
|
2019-10-25 11:27:28 +01:00
|
|
|
}
|