* Create User * Create new user. * @param data The data for the request. * @param data.requestBody * @returns UserPublic Successful Response * @throws ApiError
(data: UsersCreateUserData)
| 268 | * @throws ApiError |
| 269 | */ |
| 270 | public static createUser(data: UsersCreateUserData): CancelablePromise<UsersCreateUserResponse> { |
| 271 | return __request(OpenAPI, { |
| 272 | method: 'POST', |
| 273 | url: '/api/v1/users/', |
| 274 | body: data.requestBody, |
| 275 | mediaType: 'application/json', |
| 276 | errors: { |
| 277 | 422: 'Validation Error' |
| 278 | } |
| 279 | }); |
| 280 | } |
| 281 | |
| 282 | /** |
| 283 | * Read User Me |
no outgoing calls
no test coverage detected