### YamlMime:JavaType uid: "com.azure.core.annotation.FormParam" fullName: "com.azure.core.annotation.FormParam" name: "FormParam" nameWithType: "FormParam" summary: "Annotation for form parameters to be sent to a REST API Request URI." syntax: "public interface FormParam implements Annotation" methods: - "com.azure.core.annotation.FormParam.encoded()" - "com.azure.core.annotation.FormParam.value()" type: "interface" desc: "Annotation for form parameters to be sent to a REST API Request URI.\n\n**Example:**\n\n```java\n@Post(\"spellcheck\")\n Mono> spellChecker(@HeaderParam(\"X-BingApis-SDK\") String xBingApisSDK,\n @QueryParam(\"UserId\") String userId,\n @FormParam(\"Text\") String text);\n```\n\nThe value of parameter text will be encoded and encoded value will be added to the form data sent to the API." implements: - "" metadata: {} package: "com.azure.core.annotation" artifact: com.azure:azure-core:1.31.0