# jetformbuilder/3.6.5.3/components/rest-api/interfaces/endpoint-interface.php

JetFormBuilder — Dynamic Blocks Form Builder, version 3.6.5.3. 16 lines.

- Page: https://pluginprobe.com/plugins/jetformbuilder/3.6.5.3/code/components/rest-api/interfaces/endpoint-interface.php
- Raw: https://pluginprobe.com/plugins/jetformbuilder/3.6.5.3/raw/components/rest-api/interfaces/endpoint-interface.php
- Modified: 2024-08-13T13:45:00+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/jetformbuilder/3.6.5.3/code/components/rest-api/interfaces/endpoint-interface.php#L10-L20`.

```php
<?php

namespace JFB_Components\Rest_Api\Interfaces;

interface Endpoint_Interface {

	public function get_method(): string;

	public function has_permission(): bool;

	public function get_args(): array;

	public function process( \WP_REST_Request $request ): \WP_REST_Response;

}

```
