Skip to main content

Subject Manager - Person and person contacts

Subject manager service contains person's data like a address, email, phone, photo, etc.

Key endpoints

  • [GET] https://[HostName]/api/asol/idmsm/api/v1/Persons/Current
    • Gets current person contact information for current access token.

Examples response

{
"id": "[guid]",
"code": "person identification",
"name": {
"firstName": "",
"surname": ""
},
"addresses": [
{
"id": "[guid]",
"line1": "",
"city": "",
"countryCode": "[ISO country code 3166-2]",
"zipCode": "",
"validFrom": "[ISO datetime]",
"addressTypeId": "[guid]",
"systemAddressType": "Main"
}
],
"contacts": [],
"relations": [],
"email": "email@example.com",
"dateOfBirth": "[ISO datetime]",
"locale": "en-US",
"isCommunity": false,
"images": [
{
"id": "[guid]",
"downloadUrl": "/api/v1/Files/[guid]",
"isDefault": false,
"imageType": "Wallpaper",
"imageName": "PersonWallpaper.jpg",
"imageUploadId": "[guid]"
},
{
"id": "[guid]",
"downloadUrl": "/api/v1/Files/[guid]",
"isDefault": false,
"imageType": "Photo",
"imageName": "Person.jpg",
"imageUploadId": "[guid]"
}
]
}