Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/publish_zap_compatible.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ def scan_and_remove(obj, mappings):
(
("format", "date"),
("personalisation", None),
("/<client-provided-message-status-URI>", None),
("/<client-provided-channel-status-URI>", None),
("/{client-provided-message-status-URI}", None),
("/{client-provided-channel-status-URI}", None),
)
),
f
Expand Down
6 changes: 3 additions & 3 deletions specification/communications-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ paths:
/channels/nhsapp/accounts:
get:
$ref: endpoints/get_nhsapp_account_details.yaml
/<client-provided-message-status-URI>:
/{client-provided-message-status-URI}:
post:
$ref: callbacks/message_status.yaml
tags: ['Callbacks']
/<client-provided-channel-status-URI>:
/{client-provided-channel-status-URI}:
post:
$ref: callbacks/channel_status.yaml
tags: ['Callbacks']
/<client-provided-recipient-response-URI>:
/{client-provided-recipient-response-URI}:
post:
$ref: callbacks/recipient_response.yaml
tags: ['Callbacks']
2 changes: 1 addition & 1 deletion specification/documentation/APIDescription.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ Answer options: [Yes, No]

In order to present the recipient with answers, include the `answerOptions` field.

If you subscribe to recipient response callbacks, NHS Notify will send you a callback when a recipient responds to a message (currently only NHS App supports this). See [the recipient response callback](#post-/<client-provided-recipient-response-URI>) for more details.
If you subscribe to recipient response callbacks, NHS Notify will send you a callback when a recipient responds to a message (currently only NHS App supports this). See [the recipient response callback](#post-/{client-provided-recipient-response-URI}) for more details.

## Message character limits
Different character limits apply to each of the communication channels as listed below. NHS Notify will validate that any personalisation fields submitted in the send message request do not exceed these limits but it is the client's responsibility to ensure that when personalisation is combined with any templated text, the channel character limit is not exceeded.
Expand Down
Loading