WP_REST_Users_Controller::prepare_links PHP Method

    protected function prepare_links($user)
    {
        $links = array('self' => array('href' => rest_url(sprintf('%s/%s/%d', $this->namespace, $this->rest_base, $user->ID))), 'collection' => array('href' => rest_url(sprintf('%s/%s', $this->namespace, $this->rest_base))));
        return $links;
    }