Difference between revisions of "REST API:community Resource"
From AgileApps Support Wiki
imported>Aeric m (Text replace - '<tt><nowiki>https://{domain}/networking' to '<tt>{{platformURL}}') |
imported>Aeric m (Text replace - 'Community Site' to 'Community Tenant') |
||
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Performs actions on [[Community | Performs actions on [[Community Tenant]] records via the [[REST API]] | ||
===Link a User to the Community=== | ===Link a User to the Community=== | ||
Links an existing Username to a ''Community User'' | Links an existing Username to a ''Community User'' | ||
:''Learn more: [[ | :''Learn more: [[Community Tenant#Enabling a Community Tenant with Existing Users|Enabling a Community Tenant with Existing Users]]'' | ||
;Method:POST | ;Method:POST | ||
;URI:<tt>{{platformURL}}/community/user/operation/linkToCommunity | ;URI:<tt>{{platformURL}}/community/user/operation/linkToCommunity</tt> | ||
;Request: | ;Request: | ||
Line 24: | Line 24: | ||
===Login a User to the Site=== | ===Login a User to the Site=== | ||
Logs a User into a community | Logs a User into a community tenant. | ||
On a new user registration, the link to the Community | On a new user registration, the link to the Community Tenant is automatic. | ||
For a new Community | For a new Community using an established [[Tenant]], see [[Community Tenant#Enabling a Community Tenant with Existing Users|Enabling a Community Tenant with Existing Users]] | ||
The Username must be associated with a ''Community User'' in order to login to a Community | The Username must be associated with a ''Community User'' in order to login to a Community Tenant. | ||
;Method:GET | ;Method:GET | ||
;URI:<tt>{{platformURL}}/community/login/site | ;URI:<tt>{{platformURL}}/community/login/site?{query_parameters}</tt> | ||
{{Query Parameters| | {{Query Parameters| | ||
Line 47: | Line 47: | ||
;Method: POST | ;Method: POST | ||
;URI:<tt>{{platformURL}}/community/user/operation/changePassword | ;URI:<tt>{{platformURL}}/community/user/operation/changePassword</tt> | ||
;Request: | ;Request: |
Latest revision as of 00:19, 4 April 2014
Performs actions on Community Tenant 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://{yourDomain}/networking/community/user/operation/linkToCommunity
- 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 tenant.
On a new user registration, the link to the Community Tenant is automatic.
For a new Community using an established Tenant, see Enabling a Community Tenant with Existing Users
The Username must be associated with a Community User in order to login to a Community Tenant.
- Method
- GET
- URI
- https://{yourDomain}/networking/community/login/site?{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://{yourDomain}/networking/community/user/operation/changePassword
- 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: