Skip to content

Commit 0f940ea

Browse files
committed
Try sandbox endpoint
1 parent 15bde41 commit 0f940ea

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/nhsNotifyLambda/src/nhsNotifyLambda.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717

1818
const logger = new Logger({serviceName: "nhsNotify"})
1919

20-
const NHS_NOTIFY_ROUTING_ID = process.env.NHS_NOTIFY_ROUTING_ID
20+
const NHS_NOTIFY_ROUTING_ID = "b838b13c-f98c-4def-93f0-515d4e4f4ee1" // process.env.NHS_NOTIFY_ROUTING_ID
2121

2222
/**
2323
* Handler for the scheduled trigger.

packages/nhsNotifyLambda/src/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import {NotifyDataItem} from "@PrescriptionStatusUpdate_common/commonTypes"
1313
import {v4} from "uuid"
1414
import {CreateMessageBatchResponse} from "./types"
1515

16-
const NOTIFY_API_BASE_URL = process.env.NOTIFY_API_BASE_URL
17-
const NOTIFY_API_TOKEN = process.env.NOTIFY_API_TOKEN
16+
const NOTIFY_API_BASE_URL = "https://sandbox.api.service.nhs.uk/comms" // process.env.NOTIFY_API_BASE_URL
17+
const NOTIFY_API_TOKEN = "g1112R_ccQ1Ebbb4gtHBP1aaaNM" // process.env.NOTIFY_API_TOKEN
1818

1919
const TTL_DELTA = 60 * 60 * 24 * 7 // Keep records for a week
2020

0 commit comments

Comments
 (0)