# /api/v3/users/{id}/form --- post: parameters: - description: User id example: '1' in: path name: id required: true schema: type: integer responses: '200': description: OK headers: {} '400': content: application/hal+json: examples: response: value: _type: Error errorIdentifier: urn:openproject-org:api:v3:errors:InvalidRequestBody message: The request body was not a single JSON object. description: Occurs when the client did not send a valid JSON object in the request body. headers: {} '403': content: application/hal+json: examples: response: value: _type: Error errorIdentifier: urn:openproject-org:api:v3:errors:MissingPermission message: You are not authorized to access this resource. description: |- Returned if the client does not have sufficient permissions. **Required permission:** manage_user global permission headers: {} '404': content: application/hal+json: examples: response: value: _type: Error errorIdentifier: urn:openproject-org:api:v3:errors:NotFound message: The requested resource could not be found. description: |- Returned if the request user can not be found. *Note: A client without sufficient permissions shall not be able to test for the existence of a membership. That's why a 404 is returned here, even if a 403 might be more appropriate.* headers: {} tags: - Users description: '' operationId: User_update_form summary: User update form