You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The legacy SDK supported sending the check logo on check creation in a multipart request by passing a java.io.File to the logo method on the CheckRequest.Builder.
By contrast, in version 13.4.3, CheckEditable.setLogo only takes a String. While the API doc mentions that logo "accepts a remote URL or local file upload", the SDK does not seem to support the latter -- I've tried specifying the file path as well as a data URI containing the base64-encoded image, and both result in a check that fails to render in the dashboard.
Is there still a way to send the logo image itself in the request in version 13.* of the SDK or is a remote URI the only option?
The text was updated successfully, but these errors were encountered:
The legacy SDK supported sending the check logo on check creation in a multipart request by passing a
java.io.File
to thelogo
method on theCheckRequest.Builder
.Here are the
logo
method signaturesand the
logo
field on the Request Post Body in my Lob Dashboard logs for a successfully created check:By contrast, in version 13.4.3,
CheckEditable.setLogo
only takes aString
. While the API doc mentions that logo "accepts a remote URL or local file upload", the SDK does not seem to support the latter -- I've tried specifying the file path as well as a data URI containing the base64-encoded image, and both result in a check that fails to render in the dashboard.Is there still a way to send the logo image itself in the request in version 13.* of the SDK or is a remote URI the only option?
The text was updated successfully, but these errors were encountered: