mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 15:31:15 -05:00
New endpoint to insert new service reply to email address and update existing one.
This commit is contained in:
11
app/service/service_senders_schema.py
Normal file
11
app/service/service_senders_schema.py
Normal 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"]
|
||||
}
|
||||
Reference in New Issue
Block a user