notification-sent
v0.0.1

The notification has been sent by MRLPA to an actor on a LPA

Context

We send notifications to all actors during the LPA application and registration journey.

Notifications might be sent by email or SMS, depending on each actor's preference and available contact details.

Letter notifications may also be sent, but are sent by Sirius rather than MRLPA so do not trigger this event.

Trigger

The notification has successfully been sent to GOV.UK Notify.

This does not mean it has successfully been delivered to the actor.

Effect

Sirius downloads the notification information and content from GOV.UK Notify and saves a copy of it.

The notification is visible in the Documents tab of Sirius.

Consumer / Producer Diagram

Examples

1{
2  "uid": "M-1234-5678-9012",
3  "notificationId": "740e5834-3a29-46b4-9a6f-16142fde533a"
4}
5
notification-sent Schema (json)
{
  "$id": "https://opg.service.justice.gov.uk/opg.poas.sirius/notification-sent.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "opg.poas.makeregister/notification-sent",
  "type": "object",
  "properties": {
    "uid": {
      "type": "string",
      "description": "The UID of the LPA",
      "pattern": "^M(-[A-Z0-9]{4}){3}$"
    },
    "notificationId": {
      "type": "string",
      "description": "The GOV UK Notify id of the notification sent",
      "format": "uuid"
    }
  },
  "required": ["uid", "notificationId"]
}
Edit this pageLast updated on 2024/11/22