We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 369375e commit 1780e39Copy full SHA for 1780e39
doc/API.md
@@ -178,13 +178,14 @@ Authorization: Bearer QWxhZGRpbjpPcGVuU2VzYW1l...
178
}
179
```
180
### Response
181
-Successful requests will produce a "201 Created" response with a body containing an activation url.
+Successful requests will produce a "201 Created" response with a body containing the user's email and an activation url.
182
This activation url will contain a temporary session token that will be exchanged by a long live token on user activation:
183
```ssh
184
HTTP/1.1 201 Created
185
Connection: close
186
{
187
- "activation_url": "/v1/users/InR5cCI6IkpXVCJ?auth=BWdsaxhZGRpbjpPcGVuU2VzYW1l"
+ "email": "[email protected]",
188
+ "activation_url": "/v1/users/InR5cCI6IkpXVCJ/activate?auth=BWdsaxhZGRpbjpPcGVuU2VzYW1l"
189
190
191
0 commit comments