New endpoint to insert new service reply to email address and update existing one.

This commit is contained in:
Rebecca Law
2017-09-14 17:54:38 +01:00
parent a5d3b787e1
commit 6b2c2962c9
6 changed files with 274 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
add_service_email_reply_to_request = {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "POST service email reply to address",
"type": "object",
"title": "Add new email reply to address for service",
"properties": {
"email_address": {"type": "string", "format": "email_address"},
"is_default": {"type": "boolean"}
},
"required": ["email_address"]
}