Skip to content

Commit b91d021

Browse files
committed
Fix endpoint URI in psc service
1 parent 5a3bbbd commit b91d021

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)