1
0
Fork 0
mirror of synced 2024-06-18 18:54:55 +12:00

Updated docs

This commit is contained in:
Eldad Fux 2020-01-23 01:32:10 +02:00
parent 3b3c55130f
commit 0c6deb6c0c
4 changed files with 3 additions and 4 deletions

View file

@ -213,7 +213,7 @@ $utopia->get('/v1/account/logs')
);
$utopia->post('/v1/account')
->desc('Create a new account')
->desc('Create Account')
->label('webhook', 'account.create')
->label('scope', 'public')
->label('sdk.namespace', 'account')

View file

@ -1 +0,0 @@
Use this endpoint to resend your invitation email for a user to join a team.

View file

@ -1,5 +1,5 @@
Use this endpoint to invite a new member to your team. An email with a link to join the team will be sent to the new member email address. If member doesn't exists in the project it will be automatically created.
Use the redirect parameter to redirect the user from the invitation email back to your app. When the user is redirected, use the /teams/{teamId}/memberships/{inviteId}/status endpoint to finally join the user to the team.
Use the 'url' parameter to redirect the user from the invitation email back to your app. When the user is redirected, use the [Update Team Membership Status](/docs/teams#updateTeamMembershipStatus) endpoint to finally join the user to the team.
Please note that in order to avoid a [Redirect Attacks](https://github.com/OWASP/CheatSheetSeries/blob/master/cheatsheets/Unvalidated_Redirects_and_Forwards_Cheat_Sheet.md) the only valid redirect URL's are the once from domains you have set when added your platforms in the console interface.

View file

@ -1 +1 @@
This endpoint allows a user to leave a team or for a team owner to delete the membership of any other team member.
This endpoint allows a user to leave a team or for a team owner to delete the membership of any other team member. You can also use this endpoint to delete a user membership even if he didn't accept it.