POST /api/user/
Creates a new user based on the provided values. If desired an authentication JWT can be generated right away. After creating an account the initial workspace containing a database is created.
Servers
- /
Request headers
Name | Type | Required | Description |
---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/json" |
Request body fields
Name | Type | Required | Description |
---|---|---|---|
name |
String | Yes | |
email |
String | Yes |
The email address is also going to be the username. |
workspace_invitation_token |
String | No |
If provided and valid, the user accepts the workspace invitation and will have access to the workspace after signing up. |
password |
String | Yes | |
authenticate |
Boolean | No |
Indicates whether an authentication JWT should be generated and be included in the response. Default value: false |
language |
String | No |
An ISO 639 language code (with optional variant) selected by the user. Ex: en-GB. Default value: "en" |
template_id |
Integer | No |
The id of the template that must be installed after creating the account. This only works if the |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.