Access users and groups from different enterprise identity providers like LDAP, MSAD, and others.
iOS Mobile SDK: User and Group Management
MAS User and Group Management implements the SCIM 2.0 specification. Why SCIM? SCIM emphasizes simplicity of development and integration, while applying existing authentication, authorization, and privacy models.
All of this complexity is abstracted away so your interaction with the iOS Mobile SDK looks simply like this:
Retrieve a user by username:
//Retrieve a MASUser object that matches the given userName
[MASUser getUserByUserName:sampleUserName completion:^(MASUser *user, NSError *error) {
//your code here
}];
Retrieve a user by id:
//Retrieve a MASUser object that matches the given objectId
[MASUser getUserByObjectId:sampleUserObjectId completion:^(MASUser *user, NSError *error) {
//your code here
}];