Registration in communities
let req = [TLAuthRequests registerUserWithOrganizationId:self.organization.organizationId
firstName:firstName lastName:lastName];
let op = [req operationForApi:TPDApi.sharedApi];
[op startWithTimeout:TPDCheckOnlyNetworkOperationTimeOutInterval successBlock:^(TLAuthorization *auth) {
//handle success
} failureBlock:^(NSError *error) {
//handle error
}];Last updated
