Groups
Click here for a complete list of operations.
RemoveUser
Removes a user from a group.
The calling user must either be the owner of the group or the same user who is to be removed.
This method has no output.
Parameters:
long caller_wsid : The identifier of the user calling RemoveUser()
string call_pw : Password of said user.
long user2remove : The identifier of the user to be removed.
long gid : The identifier of the group from which the user is to be removed.
Output:
Void
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /CasJobs/services/groups.asmx HTTP/1.1 Host: casjobs.sdss.org Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://Services.Cas.jhu.edu/RemoveUser" <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <RemoveUser xmlns="http://Services.Cas.jhu.edu"> <caller_wsid>long</caller_wsid> <caller_pw>string</caller_pw> <user2remove>long</user2remove> <gid>long</gid> </RemoveUser> </soap:Body> </soap:Envelope>
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <RemoveUserResponse xmlns="http://Services.Cas.jhu.edu" /> </soap:Body> </soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /CasJobs/services/groups.asmx HTTP/1.1 Host: casjobs.sdss.org Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <RemoveUser xmlns="http://Services.Cas.jhu.edu"> <caller_wsid>long</caller_wsid> <caller_pw>string</caller_pw> <user2remove>long</user2remove> <gid>long</gid> </RemoveUser> </soap12:Body> </soap12:Envelope>
HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <RemoveUserResponse xmlns="http://Services.Cas.jhu.edu" /> </soap12:Body> </soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /CasJobs/services/groups.asmx/RemoveUser?caller_wsid=string&caller_pw=string&user2remove=string&gid=string HTTP/1.1 Host: casjobs.sdss.org
HTTP/1.1 200 OK
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /CasJobs/services/groups.asmx/RemoveUser HTTP/1.1 Host: casjobs.sdss.org Content-Type: application/x-www-form-urlencoded Content-Length: length caller_wsid=string&caller_pw=string&user2remove=string&gid=string
HTTP/1.1 200 OK