Beetoven
BBuildShip
•Created by Beetoven on 11/27/2024 in #❓・buildship-help
API error with FlutterFlow
I did it simply by recreating a new, similar workflow. I conclude that I made a mistake in changing the original template.
8 replies
BBuildShip
•Created by EnVau on 11/26/2024 in #❓・buildship-help
Issue with Exporting Workflows
I'm also having the same problem. I only use version 2.0. I bought credits (without subscribing to a plan) and I still can't export an API. The APIs appear but cannot be selected.
5 replies
BBuildShip
•Created by Beetoven on 11/27/2024 in #❓・buildship-help
API error with FlutterFlow
I can't export the API, it seems that this is only possible with paid plans. I called BuildShip Support asking if I could export the API if I bought credits (U$10.00) before signing up for a plan. I'm waiting for a reply, but if anyone knows about this, please let me know.
8 replies
BBuildShip
•Created by Beetoven on 11/27/2024 in #❓・buildship-help
API error with FlutterFlow
When calling the API in FlutterFlow, the body displayed is:
{
"price": "price_1QN9AjJEAEYO5vN4ikHJTe3i",
"quantity": 1
}
Log BuildShip:
Error: The
line_items
parameter is required in payment mode.
Logs Stripe:
{
"error": {
"message": "The line_items
parameter is required in payment mode.",
"request_logurl": "https://dashboard.stripe.com/test/logs/req**",
"type": "invalid_request_error"
}
}
Post Body:
{
"mode": "payment",
"payment_method_types": {
"0": "card"
},
"success_url": "https://aur25w.buildship.run/checkout-message-******"
}
It should be:
{
"line_items": {
"0": {
"price": "price_1QN9AjJEAEYO5vN**",
"quantity": "1"
}
},
"mode": "payment",
"payment_method_types": {
"0": "card"
},
"success_url": "https://aur25w.buildship.run/checkout-message-******"
}8 replies