26-09-22 05:26 PM
26-09-22 10:55 PM
28-09-22 09:22 PM
28-09-22 11:23 PM
29-09-22 03:11 PM
curl --location --request PUT 'https://4thdkc2zq3.execute-api.us-east-1.amazonaws.com/dev/mfgrpafiles/Stellantis_CoC_EN.pdf' \
--header 'Authorization: Basic YWRtaW46YWRtaW4=' \
--header 'Content-Type: application/pdf' \
--data-binary '@/C:/Users/T0003BB/Documents/Stellantis_CoC_EN.pdf'
API Name:MFG_rpa_api
ID: 4thdkc2zq3
Protocol:REST
S3 bucket name:mfgrpafiles
Env: Dev
Regards,
Arun
18-10-24 06:44 PM
Hi @ArunkumarManoha ,
Did you get the solution? If yes could you please share insights for the above Action?
05-08-25 10:12 AM - edited 05-08-25 10:14 AM
Hello,
I just downloaded these VBOs from DX. And I'm trying to create a process to download files from S3.
Our system requires a proxy to be configured, but there is no place in this S3 VBO to configure the proxy.
Is it necessary to modify the VBO? Or do I need another asset?
Is anyone using these VBOs to perform S3 operations in an environment that requires proxy and proxy exception settings?
DX links:
BluePrism AWS REST API Utility
https://digitalexchange.blueprism.com/cardDetails?id=102406
S3
https://digitalexchange.blueprism.com/cardDetails?id=56185
Friday - last edited Friday
Hello, it's 2026 and if someone is having issues with the AWS S3 VBO when trying to list objects, here's what I did.
Issue: the custom ListObjects action passes "/[Bucket]" as ActionURL in the "Common parameters" collection, causing the URL to duplicate the bucket id, therefore returning error 400.
Solution: Duplicated the ListObjects action, added a calculation stage to set the ActionURL as a query parameter with the bucket prefix (which shuld be received as an action's input parameter) as follows:
- "/?prefix="&[prefix]
Then the URL gets fixed: https://<bucket-name>.s3.<region>.amazonaws.com/?prefix=<bucket-prefix>
Regards,
Alexander F.