MobileFirst Java™ adapters expose a full REST API that enables you to test functionality by issuing HTTP requests.
You can test adapters using MobileFirst Platform CLI, as well as third-party tools such as Swagger and Postman.
The base URL for an adapter is:
<server-address>/<context-root>/api/adapters/<adaptername>.
To test an adapter by using CLI, you call it by running the mfpdev adapter call command.
For more information on the command, see Command-line interface (CLI) summary, or run the mfpdev help adapter call command.

Swagger-UI provides a convenient way of testing adapters, by letting you specify the appropriate parameters for every adapter endpoint. In addition, it is able to implicitly obtain a token for any scope that is used by the adapter, thus avoiding the need to manually obtain the token.
MobileFirst Server exposes an endpoint that provides Swagger 2.0 documentation so that you can test adapters with any tool that parses Swagger 2.0 JSON format. The URL of the endpoint is:
<server-ip>:<server-port>/<context-root>/api/adapterdoc/<adaptername>If your resource is protected by a security scope, perform the necessary steps for acquiring an access token and accessing the protected resource. See Acquiring access tokens and Accessing protected resources.