Create a Person

Boomtrain *boomtrain = [Boomtrain sharedInstance];
boomtrain.delegate = self;

NSDictionary *attributes = @{ @"attr1": @"val1", @"attr2": @"val2"};
[boomtrain createPerson:@"[email protected]" Attributes: attributes];

- (void) createPersonCompleted {

}

- (void) createPersonFailed:(NSError *)error {

}