Request Params
-
realm_id – The realm identifier
-
usergroup_id – The user group identifier
-
request header
-
Authorization {jwt}
-
Request
GET → https://afw.local.biocryptology.net/user/v1/api/users/{user_uuid}/bioappids?realm_id={realm_id}
Response
- OK 200 → bioAppIds retrieved successfully
[
{
"bioAppId": "ef94aee6-e8d5-11e9-81b4-2a2ae2dbcce4",
"activated": true,
"creationDate": "2018-05-01T00:00:00Z",
"modificationDate": "2024-09-25T18:11:00.682Z",
"lastLogin": "2024-09-25T18:10:59.445Z"
}
]Please note that if the user hasn’t authenticated in any b-fy services at the moment, the lastLogin field WILL NOT appear.
- KO 404 → User not found
{
"code": "USER-015",
"message": "User account doesnt exist",
"emails": [],
"phones": [],
"bioAppIds": [],
"userLegalAgreements": [],
"roles": []
}- KO 404 → User not found
{
"code": "USER-81",
"message": "User empty bioAppId",
"emails": [],
"phones": [],
"bioAppIds": [],
"userLegalAgreements": [],
"roles": []
}- KO 400 → Invalid user uuid param
{
"code": "USER-057",
"message": "Invalid User Input Data",
"emails": [],
"phones": [],
"bioAppIds": [],
"userLegalAgreements": [],
"roles": []
}- KO 400 → Invalid realmId
{
"message": "invalid_realm_id"
}- KO 401 → Realm doesn’t exist
{
"message": "null"
}