# force-refresh/3.2.1/includes/api/interfaces/interface-api-handler-admin.php

Force Refresh, version 3.2.1. 19 lines.

- Page: https://pluginprobe.com/plugins/force-refresh/3.2.1/code/includes/api/interfaces/interface-api-handler-admin.php
- Raw: https://pluginprobe.com/plugins/force-refresh/3.2.1/raw/includes/api/interfaces/interface-api-handler-admin.php
- Modified: 2023-11-10T16:53:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/force-refresh/3.2.1/code/includes/api/interfaces/interface-api-handler-admin.php#L10-L20`.

```php
<?php
/**
 * Our API handler interface for admin calls.
 *
 * @package ForceRefresh
 */

namespace JordanLeven\Plugins\ForceRefresh\Api\Interfaces;

interface Api_Handler_Admin_Interface {

    /**
     * Function for getting the endpoint for our endpoints.
     *
     * @return  string  The namespace
     */
    public static function get_rest_endpoint(): string;
}

```
