The "User extended list" endpoint does not report the correct information about linked addresses. (Output is edited for privacy and brevity.)
For an incoming student, the address links array is empty, even though the user has linked addresses for Home and Home2.
https://api.sky.blackbaud.com/school/v1/users/extended?base_role_ids=22{
"id": 6538716,
"addresses": [{
*** "id": 4896789,
"address_type": "Home",
*** "links": [],
}, {
*** "id": 4896790,
"address_type": "Home 2",
*** "links": [],
}],
}]
}
The corresponding data from the "Addresses" endpoint returns the correct address link information.
https://api.sky.blackbaud.com/school/v1/users/6538716/addresses{
"count": 2,
"value": [{
****"id": 4896789,
"city": "Austin",
"country": "United States",
****"links": [{
"type": "Home",
},
}, {
****"id": 4896790,
"city": "Austin",
"country": "United States",
****"links": [{
"type": "Home 2",
},
}]
}
Please update the code for User list extended to return the correct links information.