Contact for Identity Screening
GET {{baseUrl}}/cas/contactsScreening/events/{{requestId}}/contacts/{{contactId}}
Returns a contact by the given contact ID
Scopes Required
- screening_provider
Response Body
Returns a list of objects that will contain a combination of the below keys
Key | Datatype | Comments |
---|---|---|
contact | Object | See below |
requestFirm | String | Unique ID of Firm |
requestUser | String | Email Address of User making the request |
Contact Object
Key | Datatype | Comments |
---|---|---|
address | Object | See address below |
birthDetails | Object | See birthDetails below |
consent | boolean | This indicates that the CAS 360 user has verified that the contact has given consent to proceed with the verification check. |
firstName | String | First Name of the person |
id | String | contactId |
lastName | String | Last Name or Surname of the person |
middleName | String | Middle Name of the person |
gender | String | Gender of the person |
passport | Object | See passport Object below |
PEPCheckRequired | Boolean | If True, a PEP check required by the provider. |
type | String | should be equal to People |
reference | String | Reference value entered by the user to help identify the event. Max 255 characters. |
Address Object
Key | Datatype | Comments |
---|---|---|
block | String | Only used if country = Singapore or Hong Kong |
buildingEstate | String | Only used if country = Singapore or Hong Kong |
careOf | String | |
country | String | Yes |
levelFloor | String | Only used if country = Singapore or Hong Kong |
postcode | String | |
suburb | String | |
state | String | Only used if country = Australia |
streetLine1 | String | |
streetLine2 | String | |
suburb | String | |
townCity | String | |
unitFlat | String | Only used if country = Singapore or Hong Kong |
birthDetails Object
Key | Datatype | Comments |
---|---|---|
birthCountry | String | ISO 3166 country code/name https://en.wikipedia.org/wiki/ISO_3166 e.g AU |
birthDate | Date | format = yyyy-MM-dd |
birthPlace | String | |
birthState | String | |
nationality | String | ISO 3166 country code/name https://en.wikipedia.org/wiki/ISO_3166 e.g AU |
communicationDetails Object
Key | Datatype | Comments |
---|---|---|
string | Contact's email address | |
mobile | string | Contact's mobile number |
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Authorization | string |
RESPONSES
status: OK
"{\n \"contact\": {\n \"address\": {\n \"block\": null,\n \"buildingEstate\": null,\n \"careOf\": \"\",\n \"country\": null,\n \"levelFloor\": null,\n \"postcode\": \"3187\",\n \"state\": \"VIC\",\n \"streetLine1\": \"606 Hawthorn Road\",\n \"streetLine2\": \"\",\n \"suburb\": \"BRIGHTON EAST\",\n \"townCity\": \"BRIGHTON EAST\",\n \"unitFlat\": null\n },\n \"birthDetails\": {\n \"birthCountry\": \"null\",\n \"birthDate\": \"null\",\n \"birthPlace\": \"null\",\n \"birthState\": \"null\"\n \"nationality\": \"Australian\"\n },\n \"communicationDetails\" {\n \"email\": \"sdesilva@bglcorp.com.au\",\n \"mobile\": \"6123123123\"\n },\n \"firstName\": \"John\",\n \"id\": 1178270,\n \"lastName\": \"Doe\",\n \"middleName\": null,\n \"gender\": M,\n \"pepCheckRequired\": true,\n \"type\": \"People\"\n \"reference\": null\n },\n \"requestFirm\": \"apitesting\",\n \"requestUser\": null\n}"