Page 1 of 1
		
			
				Add users remotely
				
Posted: 
March 23rd, 2011, 7:23 amby nathardwick
				I'm currently trying to integrate another applicaiton with my S2Member/BuddyPress install. This requires the creation of users with S2member roles and custom capabilities by the other app. Is there anything in the API that allows me to post users to the s2member system from the external application that will then generate the registration email? Has anyone had any experience with this?
Thanks in advance...
N
			 
			
		
			
				Re: Add users remotely
				
Posted: 
March 23rd, 2011, 10:06 pmby Jason Caldwell
				Thanks for the excellent question.Coming soon in a future release of s2Member Pro.s2Member Pro 
User Management API:- Add new Users.
- List Users.
- Edit existing Users.
- Delete existing Users.
This will be an NVP API that can be accessed by other services integrating with s2Member.
- Code: Select all
- http://example.com/?s2member_user_api=create
 http://example.com/?s2member_user_api=list
 http://example.com/?s2member_user_api=edit
 http://example.com/?s2member_user_api=delete
It's not ready for the show yet though.Until it is, you could integrate your own custom scripts
that make use of these existing WordPress functions.
http://codex.wordpress.org/Function_Ref ... reate_user ( create )
http://codex.wordpress.org/Function_Ref ... pdate_user ( edit )
http://codex.wordpress.org/Function_Ref ... elete_user ( delete )
http://codex.wordpress.org/Function_Reference/get_users ( list )
 
			 
			
		
			
				Re: Add users remotely
				
Posted: 
April 13th, 2011, 4:31 amby nathardwick
				Brilliant news... any ETA on this?
			 
			
		
			
				Re: Add users remotely
				
Posted: 
April 15th, 2011, 3:57 pmby Jason Caldwell
				Nothing precise yet, but it will probably be included
with s2Member v3.6 later this month,
or as late as mid May 2011.
			 
			
		
			
				Re: Add users remotely
				
Posted: 
June 23rd, 2011, 6:45 amby nathardwick
				Has this been integrated into a release yet?
			 
			
		
			
				Re: Add users remotely
				
Posted: 
June 23rd, 2011, 11:25 pmby Jason Caldwell
				Ni Nathan. Sorry, it didn't make into an official release yet. Still in development. Hopefully soon though.
			 
			
		
			
				Re: Add users remotely
				
Posted: 
September 14th, 2011, 1:21 pmby seofeed
				Checking into the status of this. I have another thread open that is asking the same question. Sorry, didn't see this one. Would gladly pay (again) for this implementation.
			 
			
		
			
				Re: Add users remotely
				
Posted: 
September 15th, 2011, 12:36 pmby seofeed
				Found the S2Member Pro API in the newest version. See that it only supports create_user at this point and that's great. Glad you guys are working toward this. Have implemented another version use the core wordpress features for our integration.