cancel
Showing results for 
Search instead for 
Did you mean: 

Get Binary Data from REST API response

Waldy
Deputy Chef II
Deputy Chef II

Hi there,

             I'm getting an error from the get method in my connector when I try to get the response of a REST API method that returns binary data.

The error is 783: unexpected token at '����' at line:

I'm guessing it is trying to parse the response as JSON.

The code is:

 

execute: lambda do |connection, input|
        # Fetch attachment binary data
        response = get("#{connection['tenant_url']}/api/rest/attachment?ID=#{input['RecId']}").
          response_format_raw. # Treat response as raw binary data
          after_error_response(/.*/) do |_code, body, _header, message|
            error("#{message}: #{body}")
          end
0 REPLIES 0