--- sidebar_position: 1 --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # ProcessRequest Sends a single request to a specified address and receives a response using the default settings `Function ProcessRequest(Val Address, Val Data = "", Val ResponseString = True, Val LineBreak = True) Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Address | --address | String | ✔ | Address and port | | Data | --data | String, BinaryData | ✖ | Data or text to be sent | | ResponseString | --string | Boolean | ✖ | An attribute of receiving the response as a string | | LineBreak | --nl | Boolean | ✖ | End the message with a line break character | Returns: BinaryData, String - Response
:::tip Parameters with Binary data type can also accept file paths on disk and URLs :::
```bsl title="1C:Enterprise/OneScript code example" ```