Skip to content
.seventhings.com

Prefill your credentials

Fill in your non-secret values to have them appear in the examples below. Stored locally in your browser.

Create a new user from person.

POST
/customer-api/v1/persons/create-user
curl --request POST \
--url https://your-instance.seventhings.com/customer-api/v1/persons/create-user \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "filter": { "<filter_id>": "<filter_name>" } }'

Create a new user from person.

Media typeapplication/json
object
filter

The filter to find the person to create user from. Have a look at the field definition to find a unique attribute for this filter. All found persons will be used to create users, so make sure to use a filter that only finds one person. You can check the filter against person list endpoint to see how many persons will be found by the filter.

The created user will receive an email if successful.

object
key
additional properties
any
Example
{
"<filter_id>": "<filter_name>"
}

Success

Request body is missing or invalid or request data is invalid.

Access token is missing or invalid.

You are not permitted to perform the requested operation.

The requested resource could not be found.

The requested resource representation has no acceptable format.

Internal Server Error.