# Render a form about a user

Returns a form drawn for an administrator to complete about somebody else, with
the fields already carrying that user's current values. Submit the result to
`PUT /form/{id}/interact/{user_id}`.
The caller must be able to read both the form and the user; if either is out of
reach the endpoint answers as though it does not exist. A caller who may read the
user but not change them gets the form back with every field disabled, so it can
be shown but not submitted.

Endpoint: GET /api/v2/form/{form_id}/interact/{user_id}
Version: 2.0.0
Security: default

## Path parameters:

  - `form_id` (integer, required)
    The ID of the form.

  - `user_id` (integer, required)
    The ID of the user.

## Header parameters:

  - `Rosterfy-Platform` (string)

## Response 200 fields (application/json):

  - `fields` (array)

  - `fields.name` (string)

  - `fields.type` (string)

  - `fields.required` (boolean)

  - `fields.label` (string)

  - `rrns` (object)

  - `rrns.user` (string)

