This documentation is for developers interested in using this Node.js client to integrate their government service with GOV.UK Notify.
npm install --save notifications-node-clientvar NotifyClient = require('notifications-node-client').NotifyClient,
notifyClient = new NotifyClient(apiKey);Generate an API key by logging in to GOV.UK Notify and going to the API integration page.
notifyClient.setProxy(proxyUrl);
Click here to expand for more information.
notifyClient
.sendSms(templateId, phoneNumber, personalisation, reference)
.then(response => console.log(response))
.catch(err => console.error(err))
;If the request is successful, response will be an object.
Click here to expand for more information.
{
"id": "bfb50d92-100d-4b8b-b559-14fa3b091cda",
"reference": null,
"content": {
"body": "Some words",
"from_number": "40604"
},
"uri": "https://api.notifications.service.gov.uk/v2/notifications/ceb50d92-100d-4b8b-b559-14fa3b091cd",
"template": {
"id": "ceb50d92-100d-4b8b-b559-14fa3b091cda",
"version": 1,
"uri": "https://api.notifications.service.gov.uk/v2/templates/bfb50d92-100d-4b8b-b559-14fa3b091cda"
}
}Otherwise the client will return an error err:
err.error.status_code |
err.error.errors |
|---|---|
429 |
[{"error": "RateLimitError","message": "Exceeded rate limit for key type TEAM of 10 requests per 10 seconds"}] |
429 |
[{"error": "TooManyRequestsError","message": "Exceeded send limits (50) for today"}] |
400 |
[{"error": "BadRequestError","message": "Can"t send to this recipient using a team-only API key"]} |
400 |
[{"error": "BadRequestError","message": "Can"t send to this recipient when service is in trial mode - see https://www.notifications.service.gov.uk/trial-mode"}] |
Click here to expand for more information.
The phone number of the recipient, only required for sms notifications.
Find by clicking API info for the template you want to send.
An optional identifier you generate. The reference can be used as a unique reference for the notification. Because Notify does not require this reference to be unique you could also use this reference to identify a batch or group of notifications.
You can omit this argument if you do not require a reference for the notification.
If a template has placeholders, you need to provide their values, for example:
personalisation={
'first_name': 'Amala',
'reference_number': '300241',
}Otherwise the parameter can be omitted or undefined can be passed in its place.
Click here to expand for more information.
notifyClient
.sendEmail(templateId, emailAddress, personalisation, reference, emailReplyToId)
.then(response => console.log(response))
.catch(err => console.error(err))
;If the request is successful, response will be an object.
Click here to expand for more information.
{
"id": "bfb50d92-100d-4b8b-b559-14fa3b091cda",
"reference": null,
"content": {
"subject": "Licence renewal",
"body": "Dear Bill, your licence is due for renewal on 3 January 2016.",
"from_email": "the_service@gov.uk"
},
"uri": "https://api.notifications.service.gov.uk/v2/notifications/ceb50d92-100d-4b8b-b559-14fa3b091cd",
"template": {
"id": "ceb50d92-100d-4b8b-b559-14fa3b091cda",
"version": 1,
"uri": "https://api.notificaitons.service.gov.uk/service/your_service_id/templates/bfb50d92-100d-4b8b-b559-14fa3b091cda"
}
}Otherwise the client will return an error err:
err.error.status_code |
err.error.errors |
|---|---|
429 |
[{"error": "RateLimitError","message": "Exceeded rate limit for key type TEAM of 10 requests per 10 seconds"}] |
429 |
[{"error": "TooManyRequestsError","message": "Exceeded send limits (50) for today"}] |
400 |
[{"error": "BadRequestError","message": "Can"t send to this recipient using a team-only API key"]} |
400 |
[{"error": "BadRequestError","message": "Can"t send to this recipient when service is in trial mode - see https://www.notifications.service.gov.uk/trial-mode"}] |
???
Click here to expand for more information.
???
Click here to expand for more information.
notifyClient
.sendLetter(templateId, personalisation, reference)
.then(response => console.log(response))
.catch(err => console.error(err))
;where personalisation is
personalisation={
'address_line_1': 'The Occupier', # required
'address_line_2': '123 High Street', # required
'address_line_3': 'London',
'postcode': 'SW14 6BH', # required
... # any other optional address lines, or personalisation fields found in your template
},If the request is successful, response will be an object:
Click here to expand for more information.
{
"id": "740e5834-3a29-46b4-9a6f-16142fde533a",
"reference": null,
"content": {
"subject": "Licence renewal",
"body": "Dear Bill, your licence is due for renewal on 3 January 2016.",
},
"uri": "https://api.notifications.service.gov.uk/v2/notifications/740e5834-3a29-46b4-9a6f-16142fde533a",
"template": {
"id": "f33517ff-2a88-4f6e-b855-c550268ce08a",
"version": 1,
"uri": "https://api.notifications.service.gov.uk/v2/template/f33517ff-2a88-4f6e-b855-c550268ce08a"
}
"scheduled_for": null
}Otherwise the client will raise a HTTPError:
error.status_code |
error.message |
|---|---|
429 |
[{"error": "RateLimitError","message": "Exceeded rate limit for key type live of 10 requests per 20 seconds"}] |
429 |
[{"error": "TooManyRequestsError","message": "Exceeded send limits (50) for today"}] |
400 |
[{"error": "BadRequestError","message": "Cannot send letters with a team api key"]} |
400 |
[{"error": "BadRequestError","message": "Cannot send letters when service is in trial mode - see https://www.notifications.service.gov.uk/trial-mode"}] |
400 |
[{"error": "ValidationError","message": "personalisation address_line_1 is a required property"}] |
Click here to expand for more information.
Find by clicking API info for the template you want to send.
An optional identifier you generate. The reference can be used as a unique reference for the notification. Because Notify does not require this reference to be unique you could also use this reference to identify a batch or group of notifications.
You can omit this argument if you do not require a reference for the notification.
The letter must contain:
- mandatory address fields
- optional address fields if applicable
- fields from template
personalisation={
'address_line_1': 'The Occupier', # mandatory address field
'address_line_2': 'Flat 2', # mandatory address field
'address_line_3': '123 High Street', # optional address field
'address_line_4': 'Richmond upon Thames', # optional address field
'address_line_5': 'London', # optional address field
'address_line_6': 'Middlesex', # optional address field
'postcode': 'SW14 6BH', # mandatory address field
'application_id': '1234', # field from template
'application_date': '2017-01-01', # field from template
}The email address of the recipient, only required for email notifications.
Find by clicking API info for the template you want to send.
An optional identifier you generate. The reference can be used as a unique reference for the notification. Because Notify does not require this reference to be unique you could also use this reference to identify a batch or group of notifications.
You can omit this argument if you do not require a reference for the notification.
Optional. Specifies the identifier of the email reply-to address to set for the notification. The identifiers are found in your service Settings, when you 'Manage' your 'Email reply to addresses'.
If you omit this argument your default email reply-to address will be set for the notification.
If other optional arguments before emailReplyToId are not in use they need to be set to undefined.
Example usage with optional reference -
sendEmail('123', 'test@gov.uk', undefined, 'your ref', '465')
Example usage with optional personalisation -
sendEmail('123', 'test@gov.uk', '{"name": "test"}', undefined, '465')
Example usage with only optional emailReplyToId set -
sendEmail('123', 'test@gov.uk', undefined, undefined, '465')
If a template has placeholders, you need to provide their values, for example:
personalisation={
'first_name': 'Amala',
'application_number': '300241',
}Otherwise the parameter can be omitted or undefined can be passed in its place.
Click here to expand for more information.
notifyClient
.getNotificationById(notificationId)
.then((response) => { })
.catch((err) => {})
;Click here to expand for more information.
If the request is successful, response will be an object:
{
"id": "notify_id",
"body": "Hello Foo",
"subject": "null|email_subject",
"reference": "client reference",
"email_address": "email address",
"phone_number": "phone number",
"line_1": "full name of a person or company",
"line_2": "123 The Street",
"line_3": "Some Area",
"line_4": "Some Town",
"line_5": "Some county",
"line_6": "Something else",
"postcode": "postcode",
"type": "sms|letter|email",
"status": "current status",
"template": {
"version": 1,
"id": 1,
"uri": "/template/{id}/{version}"
},
"created_at": "created at",
"sent_at": "sent to provider at",
}Otherwise the client will return an error err:
err.error.status_code |
err.error.errors |
|---|---|
404 |
[{"error": "NoResultFound","message": "No result found"}] |
400 |
[{"error": "ValidationError","message": "id is not a valid UUID"}] |
???
Click here to expand for more information.
???
Click here to expand for more information.
notifyClient
.getNotifications(templateType, status, reference, olderThan)
.then((response) => { })
.catch((err) => {})
;If the request is successful, response will be an object.
Click here to expand for more information.
{ "notifications":
[{
"id": "notify_id",
"reference": "client reference",
"email_address": "email address",
"phone_number": "phone number",
"line_1": "full name of a person or company",
"line_2": "123 The Street",
"line_3": "Some Area",
"line_4": "Some Town",
"line_5": "Some county",
"line_6": "Something else",
"postcode": "postcode",
"type": "sms | letter | email",
"status": sending | delivered | permanent-failure | temporary-failure | technical-failure
"template": {
"version": 1,
"id": 1,
"uri": "/template/{id}/{version}"
},
"created_at": "created at",
"sent_at": "sent to provider at",
},
…
],
"links": {
"current": "/notifications?template_type=sms&status=delivered",
"next": "/notifications?other_than=last_id_in_list&template_type=sms&status=delivered"
}
}err.error.status_code |
err.error.errors |
|---|---|
400 |
[{"error": "ValidationError","message": "bad status is not one of [created, sending, delivered, pending, failed, technical-failure, temporary-failure, permanent-failure]"}] |
400 |
[{"error": "Apple is not one of [sms, email, letter]"}] |
Click here to expand for more information.
If omitted all messages are returned. Otherwise you can filter by:
emailsmsletter
If omitted all messages are returned. Otherwise you can filter by:
sending- the message is queued to be sent by the provider.delivered- the message was successfully delivered.failed- this will return all failure statusespermanent-failure,temporary-failureandtechnical-failure.permanent-failure- the provider was unable to deliver message, email or phone number does not exist; remove this recipient from your list.temporary-failure- the provider was unable to deliver message, email box was full or the phone was turned off; you can try to send the message again.technical-failure- Notify had a technical failure; you can try to send the message again.
This is the reference you gave at the time of sending the notification. This can be omitted to ignore the filter.
If omitted all messages are returned. Otherwise you can filter to retrieve all notifications older than the given notification id.
Click here to expand for more information.
notifyClient
.getTemplateById(templateId)
.then((response) => { })
.catch((err) => {})
;If the request is successful, response will be an object.
Click here to expand for more information.
{
"id": "template_id",
"type": "sms|email|letter",
"created_at": "created at",
"updated_at": "updated at",
"version": "version",
"created_by": "someone@example.com",
"body": "body",
"subject": "null|email_subject"
}Otherwise the client will return an error err:
err.error.status_code |
err.error.errors |
|---|---|
404 |
[{"error": "NoResultFound","message": "No result found"}] |
Click here to expand for more information.
Find by clicking API info for the template you want to send.
Click here to expand for more information.
notifyClient
.getTemplateByIdAndVersion(templateId, version)
.then((response) => { })
.catch((err) => {})
;If the request is successful, response will be an object.
Click here to expand for more information.
{
"id": "template_id",
"type": "sms|email|letter",
"created_at": "created at",
"updated_at": "updated at",
"version": "version",
"created_by": "someone@example.com",
"body": "body",
"subject": "null|email_subject"
}Otherwise the client will return an error err:
err.error.status_code |
err.error.errors |
|---|---|
404 |
[{"error": "NoResultFound","No result found"}] |
Click here to expand for more information.
Find by clicking API info for the template you want to send.
The version number of the template
Click here to expand for more information.
notifyClient
.getAllTemplates(templateType)
.then((response) => { })
.catch((err) => {})
;This will return the latest version for each template.
If the request is successful, response will be an object.
Click here to expand for more information.
{
"templates" : [
{
"id": "template_id",
"type": "sms|email|letter",
"created_at": "created at",
"updated_at": "updated at",
"version": "version",
"created_by": "someone@example.com",
"body": "body",
"subject": "null|email_subject"
},
{
... another template
}
]
}If no templates exist for a template type or there no templates for a service, the response will be an object with an empty templates list element:
{
"templates" : []
}Click here to expand for more information.
If omitted all messages are returned. Otherwise you can filter by:
emailsmsletter
Click here to expand for more information.
personalisation = { "foo": "bar" };
notifyClient
.previewTemplateById(templateId, personalisation)
.then((response) => { })
.catch((err) => {})
;Click here to expand for more information.
If the request is successful, response will be an object:
{
"id": "notify_id",
"type": "sms|email|letter",
"version": "version",
"body": "Hello bar" // with substitution values,
"subject": "null|email_subject"
}Otherwise the client will return an error err:
err.error.status_code |
err.error.errors |
|---|---|
400 |
[{"error": "BadRequestError","Missing personalisation: [name]"}] |
404 |
[{"error": "NoResultFound","No result found"}] |
Click here to expand for more information.
Find by clicking API info for the template you want to send.
If a template has placeholders you need to provide their values. For example:
personalisation={
'first_name': 'Amala',
'reference_number': '300241',
}Otherwise the parameter can be omitted or undefined can be passed in its place.
There are unit and integration tests that can be run to test functionality of the client. You will need to have the relevant environment variables sourced to run the tests.
To run the unit tests:
npm testTo run the integration tests:
npm test --integration