"POST /openapi/v1/users" method

Creating a user that is added to a specified group.

Request

Header:

Body:

Example of the body of a request:

{

    user: {

        fullName: 'John Doe',

        shortName: 'John',

        email: 'some@email.com'

    },

    group: {

        id: '627d5c63f0672a10fbac23bb'

    }

}

Response

Example of a response:

{

    user: {

        id: '627b4aa62344090b598f7435'

    }

}

Possible errors:

To the top