GET PlanCare2Api/Clients/{clientId}/BsnVerifications

Get the Bsn verification of the client

At least one of these modules is required: RelationManagement

Requires 'Read' permission for function ClientBsnVerification {2FE2E2CA-2643-45C6-B70C-DB85E6EC65B8}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

internal client identifier

integer

Required

Body Parameters

None.

Response Information

Resource Description

Bsn verification

BsnVerification
NameDescriptionTypeAdditional information
Id

The internal id of the bsn verification

integer

None

RelationId

The internal id of the relation

integer

None

Source

Confirmation source

BsnVerificationSource

None

Bsn

The BSN which is confirmed

string

None

ConfirmationDate

Confirmation date

date

None

ConfirmedByName

The name of the employee whom confirmed

string

None

Confirmed

Determines if the bsn is confirmed by a reliable source

boolean

None

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RelationId": 2,
  "Source": 1,
  "Bsn": "sample string 3",
  "ConfirmationDate": "2026-05-26T23:13:10.1500251+02:00",
  "ConfirmedByName": "sample string 5",
  "Confirmed": true
}

application/xml, text/xml

Sample:
<BsnVerification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DHS.PlanCare.Web.Api.Interface.Client">
  <Bsn>sample string 3</Bsn>
  <ConfirmationDate>2026-05-26T23:13:10.1500251+02:00</ConfirmationDate>
  <Confirmed>true</Confirmed>
  <ConfirmedByName>sample string 5</ConfirmedByName>
  <Id>1</Id>
  <RelationId>2</RelationId>
  <Source>OtherBsnUser</Source>
</BsnVerification>