REST Attachments

Note

We have identified some use cases where ReadyAPI Windows users required broader character encoding through UTF-8. To set encoding to UTF-8, you need to make one configuration change to <readyapi-installation-folder>\bin\ReadyAPI.vmoptions. Insert a new line at the end and add -Dfile.encoding=UTF-8. Save, close the file, and open ReadyAPI. For additional details on setting the encoding to UTF-8, refer to the Unicode Support page.

REST sends attachments as MIME parts in a message with multipart/form-data media type.

Requirements

To send an attachment, your request must have a payload. For example, a GET request cannot have attachments, as it cannot have payload.

Sending a Request to REST Services

In the Message Body

To send an attachment to a REST service:

  1. Open the Attachments panel and click add.png Add Attachment.

    Attachments in ReadyAPI: Adding REST attachments
  2. Select the file you want to send. ReadyAPI will ask you if want to cache it in the request. Uncached attachments are read from the file directly each time the request is sent. Cached attachments are stored in the project, so you can remove the original file.

  3. Important

    Open the Request editor and set the request media type as multipart/form-data or multipart/mixed.

    Attachments in ReadyAPI: Setting media type

Sending an attachment as a formData parameter

Some services require that you send attachments as a formData parameter in the body. In this case, additional configuration is required:

  • Attach the file to the project as described above.

  • Enable the Post QueryString option.

    Attachments in ReadyAPI: Setting the Post QueryString option
  • Make sure the parameter that you use to attach the file has the QUERY type. Then, specify the file to be attached by using file:filename.txt as a parameter value.

    Tip

    You can specify file:C:/<folder>/<filename> as a parameter value to attach a file from the computer. It will not be cached in the project.

    Attachments in ReadyAPI: Attachment configuration
  • In the Attachments panel, input the name of the parameter in the ContentID column.

    Attachments in ReadyAPI: Setting the ContentID option

Related Topics of Interest

go.gifREST Requests

go.gifRequest Editor Interface

See Also

Publication date: