Forum Academy Marketplace Showcase Pricing Features

Workflow API root URL modification

Hello Bubble Community,

I have a following use case:
I can expose a public Workflow API called “get-availabilities” that has an action “Return data from API” it is a JSON response that in bubble root URL format is accessed on the following Workflow API root URL + workflow api name
https://mybackendapp.io/version-test/api/1.1/wf/get-availabilities

but I have to add a path segment /1/ like following:
https://mybackendapp.io/version-test/api/1.1/wf/1/get-availabilities

renaming the api workflow to “1/get-availabilities” is not possible since "/"is not allowed

Anyone has any idea how to do insert or redirect to that specific target URL where the Workflow API response action is initiated?

This is the API System’s requirement on how it want to send and receive requests on URLs:

https://integrator.getyourguide.com/documentation/supplier_endpoints

So that /1/ added to Workflow API root URL makes the public GET API endpoint name “lost”:

{“statusCode”:404,“body”:{“status”:“NOT_FOUND”,“message”:“Workflow not found 1”}}