Skip to content

Commit 13e5b9a

Browse files
authored
Merge pull request #806 from companieshouse/feature/update-psc-service-endpoint
IDVA3-3389 Fix endpoint URI in psc service
2 parents 5a3bbbd + d529717 commit 13e5b9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/psc/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default class PscService {
1616
* @param pscNotificationId the PSC Notification ID to retrieve
1717
*/
1818
public async getPscIndividual (companyNumber: string, pscNotificationId: string, headers?: Headers): Promise<Resource<PersonWithSignificantControl> | ApiErrorResponse> {
19-
const resourceUri = `/company/${companyNumber}/persons-with-significant-control/individual/${pscNotificationId}/verification-state`;
19+
const resourceUri = `/company/${companyNumber}/persons-with-significant-control/individual/${pscNotificationId}/identity-verification-details`;
2020
const response = await this.client.httpGet(resourceUri, headers);
2121

2222
if (response.error) {

0 commit comments

Comments
 (0)