Notify NL API Documentatie (REST)

Deze documentatie is bedoeld voor ontwikkelaars die de NotifyNL API willen gebruiken om e-mails, sms-berichten of brieven te verzenden.

Je kunt deze API direct integreren als je geen gebruik kunt maken van de client libraries die er zijn; en wanneer je besluit dat je niet alles via OMC kunt doen.

Let op: niet alle functionaliteit hieronder genoemd (zoals het versturen van brieven) wordt in Nederland al ondersteund.

You can use it to integrate directly with the API if you cannot use one of our 6 client libraries.

Developers can also use our OpenAPI filearrow-up-right with tools such as Swaggerarrow-up-right and Redocarrow-up-right to assist with using the REST API. You cannot use Swagger Editor to make test API requests.

Making a request

Base URL

https://api.notifynl.nl

The authorisation header is an API key that is encoded using JSON Web Tokensarrow-up-right. You must include an authorisation header.

JSON Web Tokens have a standard header and a payload. The header consists of:

{
  "typ": "JWT",
  "alg": "HS256"
}

The payload consists of:

{
  "iss": "26785a09-ab16-4eb0-8407-a37497a57506",
  "iat": 1568818578
}

JSON Web Tokens are encoded using a secret key with the following format:

That secret key forms a part of your API key, which follows the format {key_name}-{iss-uuid}-{secret-key-uuid}.

For example, if your API key is my_test_key-26785a09-ab16-4eb0-8407-a37497a57506-3d844edf-8d35-48ac-975b-e847b4f122b0:

  • your API key name is my_test_key

  • your iss (your service id) is 26785a09-ab16-4eb0-8407-a37497a57506

  • your secret key is 3d844edf-8d35-48ac-975b-e847b4f122b0

iat (issued at) is the current time in UTC in epoch seconds. The token expires within 30 seconds of the current time.

Refer to the JSON Web Tokens websitearrow-up-right for more information on encoding your authorisation header.

When you have an encoded and signed token, add that token to a header as follows:

Content header

The content header is application/json:

Send a message

You can use GOV.UK Notify to send emails, text messages and letters.

Send a text message

Request body

Arguments

phone_number (required)

The phone number of the recipient of the text message. This can be a UK or international number.

template_id (required)

To find the template ID:

  1. Go to the Templates page and select the relevant template.

  2. Select Copy template ID to clipboard.

personalisation (optional)

If a template has placeholder fields for personalised information such as name or reference number, you must provide their values in a dictionary with key value pairs. For example:

You can leave out this argument if a template does not have any placeholder fields for personalised information.

reference (optional)

An identifier you can create if necessary. This reference identifies a single notification or a batch of notifications. It must not contain any personal information such as name or postal address. For example:

You can leave out this argument if you do not have a reference.

sms_sender_id (optional)

A unique identifier of the sender of the text message notification.

To find the text message sender:

  1. Go to the Settings page.

  2. In the Text Messages section, select Manage on the Text Message sender row.

You can then either:

  • copy the sender ID that you want to use and paste it into the method

  • select Change to change the default sender that the service will use, and select Save

You can leave out this argument if your service only has one text message sender, or if you want to use the default sender.

Response

If the request is successful, the response body is json with a status code of 201:

If you are using the test API key, all your messages will come back with a delivered status.

All messages sent using the team and guest list or live keys will appear on your dashboard.

Errors

If the request is not successful, the API returns json containing the relevant error code. For example:

status_code
Error message
How to fix

400

[{ "error": "BadRequestError", "message": "Can't send to this recipient using a team-only API key" }]

Use the correct type of 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" }]

Your service cannot send this notification in trial modearrow-up-right

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information

429

[{ "error": "RateLimitError", "message": "Exceeded rate limit for key type TEAM/TEST/LIVE of 3000 requests per 60 seconds" }]

Refer to API rate limits for more information

429

[{ "error": "TooManyRequestsError", "message": "Exceeded send limits (LIMIT NUMBER) for today" }]

Refer to service limits for the limit number

500

[{ "error": "Exception", "message": "Internal server error" }]

Notify was unable to process the request, resend your notification.

Send an email

Request body

Arguments

email_address (required)

The email address of the recipient.

template_id (required)

To find the template ID:

  1. Go to the Templates page and select the relevant template.

  2. Select Copy template ID to clipboard.

personalisation (optional)

If a template has placeholder fields for personalised information such as name or reference number, you need to provide their values in a dictionary with key value pairs. For example:

You can leave out this argument if a template does not have any placeholder fields for personalised information.

reference (optional)

An identifier you can create if necessary. This reference identifies a single notification or a batch of notifications. It must not contain any personal information such as name or postal address. For example:

You can leave out this argument if you do not have a reference.

email_reply_to_id (optional)

This is an email address specified by you to receive replies from your users. You must add at least one reply-to email address before your service can go live.

To add a reply-to email address:

  1. Go to the Settings page.

  2. In the Email section, select Manage on the Reply-to email addresses row.

  3. Select Add reply-to address.

  4. Enter the email address you want to use, and select Add.

For example:

You can leave out this argument if your service only has one reply-to email address, or you want to use the default email address.

Response

If the request is successful, the response body is json with a status code of 201:

Errors

If the request is not successful, the API returns json containing the relevant error code. For example:

status_code
Error message
How to fix

400

[{ "error": "BadRequestError", "message": "Can't send to this recipient using a team-only API key" }]

Use the correct type of 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" }]

Your service cannot send this notification in trial modearrow-up-right

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information

429

[{ "error": "RateLimitError", "message": "Exceeded rate limit for key type TEAM/TEST/LIVE of 3000 requests per 60 seconds" }]

Refer to API rate limits for more information

429

[{ "error": "TooManyRequestsError", "message": "Exceeded send limits (LIMIT NUMBER) for today" }]

Refer to service limits for the limit number

500

[{ "error": "Exception", "message": "Internal server error" }]

Notify was unable to process the request, resend your notification.

When you add a new service it will start in trial modearrow-up-right. You can only send letters when your service is live.

To send Notify a request to go live:

  1. Go to the Settings page.

  2. In the Your service is in trial mode section, select request to go live.

Request body

Arguments

template_id (required)

To find the template ID:

  1. Go to the Templates page and select the relevant template.

  2. Select Copy template ID to clipboard.

personalisation (required)

The personalisation argument always contains the following parameters for the letter recipient’s address:

  • address_line_1

  • address_line_2

  • address_line_3

  • address_line_4

  • address_line_5

  • address_line_6

  • address_line_7

The address must have at least 3 lines.

The last line needs to be a real UK postcode or the name of a country outside the UK.

Notify checks for international addresses and will automatically charge you the correct postage.

The postcode personalisation argument has been replaced. If your template still uses postcode, Notify will treat it as the last line of the address.

Any other placeholder fields included in the letter template also count as required parameters. You need to provide their values in a dictionary with key value pairs. For example:

reference (optional)

An identifier you can create if necessary. This reference identifies a single notification or a batch of notifications. It must not contain any personal information such as name or postal address. For example:

Response

If the request is successful, the response body is json and the status code is 201:

Errors

If the request is not successful, the API returns json containing the relevant error code. For example:

status_code
Error message
How to fix

403

[{ "error": "BadRequestError", "message": "Can't send letters with a team API key" }]

Use the correct type of API key.

400

[{ "error": "BadRequestError", "message": "Can't send letters when service is in trial mode - see https://www.notifications.service.gov.uk/trial-mode" }]

Your service cannot send this notification in trial modearrow-up-right.

400

[{ "error": "ValidationError", "message": "personalisation address_line_1 is a required property" }]

Ensure that your template has a field for the first line of the address, check personalisation for more information.

400

[{ "error": "ValidationError", "message": "Must be a real UK postcode" }]

Ensure that the value for the last line of the address is a real UK postcode.

400

[{ "error": "ValidationError", "message": "Last line of address must be a real UK postcode or another country" }]

Ensure that the value for the last line of the address is a real UK postcode or the name of a country outside the UK.

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock.

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information.

429

[{ "error": "RateLimitError", "message": "Exceeded rate limit for key type TEAM/TEST/LIVE of 3000 requests per 60 seconds" }]

Refer to API rate limits for more information.

429

[{ "error": "TooManyRequestsError", "message": "Exceeded send limits (LIMIT NUMBER) for today" }]

Refer to service limits for the limit number.

500

[{ "error": "Exception", "message": "Internal server error" }]

Notify was unable to process the request, resend your notification.

Sending a letter (future)

Send a precompiled letter

Request body

Arguments

reference (required)

An identifier you can create if necessary. This reference identifies a single notification or a batch of notifications. It must not contain any personal information such as name or postal address.

content (required)

The precompiled letter must be a PDF file which meets the GOV.UK Notify letter specificationarrow-up-right. You’ll need to convert the file into a string that is base64 encoded.

postage (optional)

You can choose first or second class postage for your precompiled letter. Set the value to first for first class, or second for second class. If you do not pass in this argument, the postage will default to second class.

Response

If the request is successful, the response body is json and the status code is 201:

Errors

If the request is not successful, the API returns json containing the relevant error code. For example:

status_code
Error message
How to fix

403

[{ "error": "BadRequestError", "message": "Can't send letters with a team API key" }]

Use the correct type of API key

400

[{ "error": "BadRequestError", "message": "Letter content is not a valid PDF" }]

PDF file format is required

400

[{ "error": "BadRequestError", "message": "Can't send letters when service is in trial mode - see https://www.notifications.service.gov.uk/trial-mode" }]

Your service cannot send this notification in trial modearrow-up-right

400

[{ "error": "ValidationError", "message": "reference is a required property" }]

Add a reference argument to the method call

400

[{ "error": "ValidationError", "message": "postage invalid. It must be either first or second." }]

Change the value of postage argument in the method call to either ‘first’ or ‘second’

429

[{ "error": "RateLimitError", "message": "Exceeded rate limit for key type live of 10 requests per 20 seconds" }]

Use the correct API key. Refer to API keys for more information

429

[{ "error": "TooManyRequestsError", "message": "Exceeded send limits (50) for today" }]

Refer to service limits for the limit number

Get message status

Message status depends on the type of message you have sent.

You can only get the status of messages sent within the retention period. The default retention period is 7 days.

Get the status of one message

Query parameters

notification_id (required)

The ID of the notification. You can find the notification ID in the response to the original notification method call.

You can also find it by signing in to GOV.UK Notifyarrow-up-right and going to the API integration page.

You can filter the returned messages by including the following optional parameters in the URL:

  • template_type

  • status

  • reference

  • older_than

Response

If the request is successful, the response body is json and the status code is 200:

Errors

If the request is not successful, the API returns json containing the relevant error code. For example:

status_code
Error message
How to fix

400

[{ "error": "ValidationError", "message": "id is not a valid UUID" }]

Check the notification ID

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information

404

[{ "error": "NoResultFound", "message": "No result found" }]

Check the notification ID

Get the status of multiple messages

This API call returns one page of up to 250 messages and statuses. You can get either the most recent messages, or get older messages by specifying a particular notification ID in the older_than argument.

You can only get messages that are within your data retention period. The default data retention period is 7 days. It can be changed in your Service Settings.

All messages

This will return all your messages with statuses. They will display in pages of up to 250 messages each.

You can filter the returned messages by including the following optional arguments in the URL:

  • template_type

  • status

  • reference

  • older_than

  • include_jobs

Arguments

You can omit any of these arguments to ignore these filters.

template_type (optional)

You can filter by:

  • email

  • sms

  • letter

status (optional)

You can filter by each:

  • email status

  • text message status

  • letter status

  • precompiled letter status

You can leave out this argument to ignore this filter.

reference (optional)

An identifier you can create if necessary. This reference identifies a single notification or a batch of notifications. It must not contain any personal information such as name or postal address. For example:

older_than (optional)

Input the ID of a notification into this argument. If you use this argument, the method returns the next 250 received notifications older than the given ID.

If you leave out this argument, the method returns the most recent 250 notifications.

The client only returns notifications that are 7 days old or newer. If the notification specified in this argument is older than 7 days, the client returns an empty response.

include_jobs (optional)

Includes notifications sent as part of a batch upload.

If you leave out this argument, the method only returns notifications sent using the API.

Response

If the request is successful, the response body is json and the status code is 200.

All messages

Errors

If the request is not successful, the API returns json containing the relevant error code. For example:

status_code
Error message
How to fix

400

[{ "error": "ValidationError", "message": "id is not a valid UUID" }]

Check the notification ID

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information

404

[{ "error": "NoResultFound", "message": "No result found" }]

Check the notification ID

Email status descriptions

Status
Description

created

GOV.UK Notify has placed the message in a queue, ready to be sent to the provider. It should only remain in this state for a few seconds.

sending

GOV.UK Notify has sent the message to the provider. The provider will try to deliver the message to the recipient for up to 72 hours. GOV.UK Notify is waiting for delivery information.

delivered

The message was successfully delivered.

permanent-failure

The provider could not deliver the message because the email address was wrong. You should remove these email addresses from your database.

temporary-failure

The provider could not deliver the message. This can happen when the recipient’s inbox is full or their anti-spam filter rejects your email. Check your content does not look like spamarrow-up-right before you try to send the message again.

technical-failure

Your message was not sent because there was a problem between Notify and the provider. You’ll have to try sending your messages again.

Text message status descriptions

Status
Description

created

GOV.UK Notify has placed the message in a queue, ready to be sent to the provider. It should only remain in this state for a few seconds.

sending

GOV.UK Notify has sent the message to the provider. The provider will try to deliver the message to the recipient for up to 72 hours. GOV.UK Notify is waiting for delivery information.

pending

GOV.UK Notify is waiting for more delivery information. GOV.UK Notify received a callback from the provider but the recipient’s device has not yet responded. Another callback from the provider determines the final status of the text message.

sent

The message was sent to an international number. The mobile networks in some countries do not provide any more delivery information. The GOV.UK Notify website displays this status as ‘Sent to an international number’.

delivered

The message was successfully delivered. If a recipient blocks your sender name or mobile number, your message will still show as delivered.

permanent-failure

The provider could not deliver the message. This can happen if the phone number was wrong or if the network operator rejects the message. If you’re sure that these phone numbers are correct, you should contact GOV.UK Notify supportarrow-up-right. If not, you should remove them from your database. You’ll still be charged for text messages that cannot be delivered.

temporary-failure

The provider could not deliver the message. This can happen when the recipient’s phone is off, has no signal, or their text message inbox is full. You can try to send the message again. You’ll still be charged for text messages to phones that are not accepting messages.

technical-failure

Your message was not sent because there was a problem between Notify and the provider. You’ll have to try sending your messages again. You will not be charged for text messages that are affected by a technical failure.

Letter status descriptions

Status
Description

accepted

GOV.UK Notify has sent the letter to the provider to be printed.

received

The provider has printed and dispatched the letter.

cancelled

Sending cancelled. The letter will not be printed or dispatched.

technical-failure

GOV.UK Notify had an unexpected error while sending the letter to our printing provider.

permanent-failure

The provider cannot print the letter. Your letter will not be dispatched.

Precompiled letter status descriptions

Status
Description

accepted

GOV.UK Notify has sent the letter to the provider to be printed.

received

The provider has printed and dispatched the letter.

cancelled

Sending cancelled. The letter will not be printed or dispatched.

pending-virus-check

GOV.UK Notify has not completed a virus scan of the precompiled letter file.

virus-scan-failed

GOV.UK Notify found a potential virus in the precompiled letter file.

validation-failed

Content in the precompiled letter file is outside the printable area. See the GOV.UK Notify letter specificationarrow-up-right for more information.

technical-failure

GOV.UK Notify had an unexpected error while sending the letter to our printing provider.

permanent-failure

The provider cannot print the letter. Your letter will not be dispatched.

Get a PDF for a letter notification

This returns the PDF contents of a letter.

Query parameters

notification_id (required)

The ID of the notification. You can find the notification ID in the response to the original notification method call.

You can also find it by signing in to GOV.UK Notifyarrow-up-right and going to the API integration page.

Response

If the request to the client is successful, the client will return bytes representing the raw PDF data.

Errors

If the request is not successful, the API returns json containing the relevant error code. For example:

error.status_code
error.message
How to fix

400

[{ "error": "ValidationError", "message": "id is not a valid UUID" }]

Check the notification ID

400

[{ "error": "PDFNotReadyError", "message": "PDF not available yet, try again later" }]

Wait for the letter to finish processing. This usually takes a few seconds

400

[{ "error": "BadRequestError", "message": "File did not pass the virus scan" }]

You cannot retrieve the contents of a letter that contains a virus

400

[{ "error": "BadRequestError", "message": "PDF not available for letters in technical-failure" }]

You cannot retrieve the contents of a letter in technical-failure

400

[{ "error": "ValidationError", "message": "Notification is not a letter" }]

Check that you are looking up the correct notification

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information

404

[{ "error": "NoResultFound", "message": "No result found" }]

Check the notification ID

Get a template

Get a template by ID

Method

This returns the latest version of the template.

Arguments

template_id (required)

The ID of the template. Sign in to NotifyNLarrow-up-right and go to the Templates page to find it.

Response

If the request is successful, the response body is json and the status code is 200.

All messages

Error codes

If the request is not successful, the API returns json containing the relevant error code. For example:

error.status_code
error.message
How to fix

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information

404

[{ "error": "NoResultFound", "message": "No result found" }]

Check your template ID

Get a template by ID and version

Method

Arguments

template_id (required)

The ID of the template. Sign in to NotifyNLarrow-up-right and go to the Templates page to find it.

version (required)

The version number of the template.

Response

If the request is successful, the response body is json and the status code is 200.

Error codes

If the request is not successful, the API returns json containing the relevant error code. For example:

error.status_code
error.message
How to fix

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information

404

[{ "error": "NoResultFound", "message": "No result Found" }]

Check your template ID and version

Get all templates

Method

This returns the latest version of all templates.

Query parameters

type (optional)

If you leave out this argument, the method returns all templates. Otherwise you can filter by:

  • email

  • sms

  • letter

Response

If the request is successful, the response body is json and the status code is 200.

If no templates exist for a template type or there no templates for a service, the API returns a json object with a templates key for an empty array:

Error codes

If the request is not successful, the API returns json containing the relevant error code. For example:

error.status_code
error.message
Notes

400

[{ "error": "ValidationError", "message": "type <TYPE> is not one of [sms, email, letter, broadcast]" }]

Make sure that the provided type is one of: email, sms, letter

400

[{ "error": "NoResultFound", "message": "No result found" }]

Check the template ID

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information

Generate a preview template

Method

This generates a preview version of a template.

The parameters in the personalisation argument must match the placeholder fields in the actual template. The API notification client will ignore any extra fields in the method.

Arguments

template_id (required)

The ID of the template. Sign in to NotifyNLarrow-up-right and go to the Templates page to find it.

Request body

personalisation (optional)

If a template has placeholder fields for personalised information such as name or reference number, you need to provide their values in a dictionary with key value pairs. For example:

Response

If the request is successful, the response body is json and the status code is 200.

Error codes

If the request is not successful, the API returns json containing the relevant error code. For example:

error.status_code
error.message
Notes

400

[{ "error": "BadRequestError", "message": "Missing personalisation: [PERSONALISATION FIELD]" }]

Check that the personalisation arguments in the method match the placeholder fields in the template

400

[{ "error": "NoResultFound", "message": "No result found" }]

Check the template ID

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information

Get received text messages

This API call returns one page of up to 250 received text messages. You can get either the most recent messages, or get older messages by specifying a particular notification ID in the older_than argument.

You can only get the status of messages that are 7 days old or newer.

Enable received text messages

To receive text messages:

  1. Go to the Text message settings section of the Settings page.

  2. Select Change on the Receive text messages row.

Method

Query parameters

older_than (optional)

The ID of a received text message. If this is passed, the response will only list text messages received before that message.

Response

If the request is successful, the response body is json and the status code is 200.

Error codes

If the request is not successful, the API returns json containing the relevant error code. For example:

error.status_code
error.message
How to fix

403

[{ "error": "AuthError", "message": "Error: Your system clock must be accurate to within 30 seconds" }]

Check your system clock

403

[{ "error": "AuthError", "message": "Invalid token: API key not found" }]

Use the correct API key. Refer to API keys for more information

Error messages

Error messages consist of:

  • a status_code, for example ‘400’

  • an error, for example ’BadRequestError’

  • a message, for example ‘Mobile numbers can only include: 0 1 2 3 4 5 6 7 8 9 ( ) + -‘

Do not use the content of the messages in your code. These can sometimes change, which may affect your API integration.

Use the status_code or the error instead, as these will not change.

Find error codes in:

  • send a message

  • get message status

  • get a template

  • get received text messages

Testing

All testing takes place in the production environment. There is no test environment for GOV.UK Notify.

Smoke testing

If you need to smoke testarrow-up-right your integration with Notify on a regular basis, you must use the following smoke test phone numbers and email addresses.

Phone numbers

  • 07700900000

  • 07700900111

  • 07700900222

Email addresses

  • simulate-delivered@notifications.service.gov.uk

  • simulate-delivered-2@notifications.service.gov.uk

  • simulate-delivered-3@notifications.service.gov.uk

The smoke test phone numbers and email addresses will validate the request and simulate a successful response, but will not send a real message, produce a delivery receipt or persist the notification to the database.

You can use these smoke test numbers and addresses with any type of API key.

You can smoke test all Notify API client functions except:

  • Get the status of one message

  • Get the status of all messages

You cannot use the smoke test phone numbers or email address with these functions because they return a fake notification_ID. If you need to test these functions, use a test API key and any other phone number or email.

Other testing

You must use a test API key to do non-smoke testing such as performance or integration testing. You can use any non-smoke testing phone numbers or email addresses. You do not need a specific Notify testing account.

API keys

There are three different types of API keys:

  • test

  • team and guest list

  • live

When you set up a new service it will start in trial modearrow-up-right. A service in trial mode can create test and team and guest list keys. You must have a live service to create a live key.

To create an API key:

  1. Go to the API integration page.

  2. Select API keys.

  3. Select Create an API key.

Test

Use a test key to test the performance of your service and its integration with GOV.UK Notify.

Messages sent using a test key:

  • generate realistic responses

  • result in a delivered status

  • are not actually delivered to a recipient

  • do not appear on your dashboard

  • do not count against your text message and email allowances

To test failure responses with a test key, use the following numbers and addresses:

Phone number/Email address
Response

07700900003

temporary-failure

07700900002

permanent-failure

temp-fail@simulator.notify

temporary-failure

perm-fail@simulator.notify

permanent-failure

any other valid number or address

delivered

You do not have to revoke test keys.

Team and guest list

A team and guest list key lets you send real messages to your team members and addresses/numbers on your guest list while your service is still in trial mode.

You will get an error if you use these keys to send messages to anyone who is not on your team or your guest list.

Messages sent with a team and guest list key appear on your dashboard and count against your text message and email allowances.

You do not have to revoke team and guest list keys.

Live

You can only create live keys once your service is live. You can use live keys to send messages to anyone.

Messages sent with a live key appear on your dashboard and count against your text message and email allowances.

You should revoke and re-create these keys on a regular basis. To revoke a key:

  1. Go to the API integration page.

  2. Select API keys.

  3. Select Revoke for the API key you want to revoke.

You can have more than one active key at a time.

You should never send test messages to invalid numbers or addresses using a live key.

Limits

Rate limits

You’re limited to sending 3,000 messages per minute.

This limit is calculated on a rolling basis, per API key type. If you exceed the limit, you will get a 429 error RateLimitError.

Daily limits

There’s a limit to the number of messages you can send each day:

Service status
Type of API key
Daily limit

Live

Team or live

  • 250,000 emails

  • 250,000 text messages

  • 20,000 letters

Trial

Team

50 emails or text messages

Live or trial

Test

Unlimited

These limits reset at midnight UTC.

Phone network limits

If you repeatedly send text messages to the same number the phone networks will block them.

There’s an hourly limit of:

  • 20 messages with the same content

  • 100 messages with any content

Your messages may not be delivered if you exceed these limits.

Callbacks

Callbacks are when GOV.UK Notify sends POST requests to your service. You can get callbacks when:

  • a text message or email you’ve sent is delivered or fails

  • your service receives a text message

Set up callbacks

You must provide:

  • a URL where Notify will post the callback to

  • a bearer token which Notify will put in the authorisation header of the requests

To do this:

  1. Go to the API integration page.

  2. Select Callbacks.

Retry callbacks

If Notify sends a POST request to your service, but the request fails then we will retry.

We will retry every 5 minutes, up to a maximum of 5 times.

Delivery receipts

When you send an email or text message, Notify will send a receipt to your callback URL with the status of the message. This is an automated method to get the status of messages.

This functionality works with test API keys, but does not work with smoke testing phone numbers or email addresses.

The callback message is formatted in JSON. All of the values are strings, apart from the template version, which is a number. The key, description and format of the callback message arguments will be:

Key
Description
Format

id

Notify’s id for the status receipts

UUID

reference

The reference sent by the service

12345678 or null

to

The email address or phone number of the recipient

hello@gov.uk or 07700912345

status

The status of the notification

delivered, permanent-failure, temporary-failure or technical-failure

created_at

The time the service sent the request

2017-05-14T12:15:30.000000Z

completed_at

The last time the status was updated

2017-05-14T12:15:30.000000Z or null

sent_at

The time the notification was sent

2017-05-14T12:15:30.000000Z or null

notification_type

The notification type

email or sms

template_id

The id of the template that was used

UUID

template_version

The version number of the template that was used

1

API architecture

Architecture for sending a text message

  1. The service sends a text message notification to Notify.

  2. Notify sends the text message to the provider.

  3. The provider delivers the text message to the recipient.

  4. The recipient receives the text message and sends a delivery receipt to the provider.

  5. The provider sends the delivery receipt to Notify.

  6. Notify receives the delivery receipt and sends an API response to the service.

  7. The service receives the API response.

Architecture for sending an email

  1. The service sends an email notification to Notify.

  2. Notify sends the email to the provider.

  3. The provider delivers the email to the recipient.

  4. The recipient receives the email and sends a delivery receipt to the provider.

  5. The provider sends the delivery receipt to Notify.

  6. Notify receives the delivery receipt and sends an API response to the service.

  7. The service receives the API response.

Architecture for sending a letter

  1. The service sends a letter notification to Notify.

  2. Notify sends the letter to the provider.

  3. The provider prints the letter and posts it.

  4. The postal service delivers the letter.

  5. The recipient receives the letter.

Architecture for getting the status of a message

  1. The service requests a notification status from Notify.

  2. Notify queries the database and retrieves the notification status.

  3. Notify sends the API response with the notification status to the service.

  4. The service receives the API response.

Architecture for getting received text messages

  1. Recipients send text messages.

  2. Notify receives the text messages.

  3. The service requests all or specific received text messages from Notify.

  4. Notify receives the request for received text messages.

  5. Notify sends the received text messages to the service.

  6. The service receives the received text messages.

Last updated