Difference between revisions of "REST API:community Resource"
From LongJump Support Wiki
imported>Aeric |
imported>Aeric m (Text replace - '<tt><nowiki>https://{domain}/networking' to '<tt>{{platformURL}}') |
||
Line 7: | Line 7: | ||
;Method:POST | ;Method:POST | ||
;URI:<tt> | ;URI:<tt>{{platformURL}}/community/user/operation/linkToCommunity</nowiki></tt> | ||
;Request: | ;Request: | ||
Line 34: | Line 34: | ||
;Method:GET | ;Method:GET | ||
;URI:<tt> | ;URI:<tt>{{platformURL}}/community/login/site</nowiki>?{query_parameters}</tt> | ||
{{Query Parameters| | {{Query Parameters| | ||
Line 47: | Line 47: | ||
;Method: POST | ;Method: POST | ||
;URI:<tt> | ;URI:<tt>{{platformURL}}/community/user/operation/changePassword</nowiki></tt> | ||
;Request: | ;Request: |
Revision as of 20:56, 30 March 2012
Performs actions on Community Tenancy records via the REST API
Link a User to the Community
Links an existing Username to a Community User
- Learn more: Enabling a Community Tenant with Existing Users
- Method
- POST
- URI
- https://na.longjump.com/networking/community/user/operation/linkToCommunity</nowiki>
- Request
<platform> <auth> <userName>{usermame}</userName> <password>{password}</password> </auth> </platform>
- Response
-
- On Success, a standard success message is displayed
- On Error, returns HTTP.FORBIDDEN. (can occur if the user is valid, but does not belong to the community tenant.)
Login a User to the Site
Logs a User into a community site.
On a new user registration, the link to the Community Site is automatic.
For a new Community in an established Tenancy, see Enabling a Community Tenant with Existing Users
The Username must be associated with a Community User in order to login to a Community Site.
- Method
- GET
- URI
- https://na.longjump.com/networking/community/login/site</nowiki>?{query_parameters}
- Query Parameters
- {userName} - username of the site user
- {password} - password of the site user
- For more information, see: Specifying Query Parameters in REST APIs
- Response
- User details such as first name, last name, and employee number--the same as the Login resource.
Change the User Password
Changes the password of the logged in user. Password policies that are configured for the community tenant will be applicable for change password operation.
- Method
- POST
- URI
- https://na.longjump.com/networking/community/user/operation/changePassword</nowiki>
- Request
<platform> <user> <old_password>{old password}</old_password> <password>{new password}</password> </user> </platform>
- Response
-
- On Success, a standard success message is displayed
- On Error, returns HTTP.INTERNAL_SERVER_ERROR
Additional Resources
These REST API resources are also available: