List os texts in a plugin

Hi there !

I’m trying to pass a list of texts to a plugin, but bubble passes it as a pointer. How do I pass only the list of texts?

bubble does not interprets as a list of texts…

it prints
Concluída, Concluída, Aguardando, Aguardando, Aguardando, Aguardando

but it reads as a pointer
{“_pointer”:[“Concluída”," Concluída"," Aguardando"," Aguardando"," Aguardando"," Aguardando"],“_call_metadata”:{“server_base_url”:“https://oflow-ii.bubbleapps.io/version-test/",“access_token”:“bus|1747679995165x222755250076289700|1749425354501x551183861016067500”,“appname”:“2025-premofw-ii”,“app_version”:“test”,“plugin_api_version”:“4”,“app_properties”:{“custom.000_test_drop”:[“etapa_number”,“ordem_number”,“preset_number”,“texto_text”,"Created By”,“Slug”,“Created Date”,“Modified Date”,“_id”],“custom.user___variaveis_padrao”:[“00_ativo_boolean”,“00_filial_custom_07_empresa_filiais”,“03_key_empresa_custom_user___empresa”,“03_key_user_variaveis_padrao_custom_user___variaveis_padrao”,“11_nome_empresa_text”,“12_cpf___cnpj_text”,“12_whatsapp_text”,“apelido_text”,“ceo_yn_boolean”,“debug_logs_boolean”,“master_convidado_boolean”,“pin_boolean”,“roles_list_option_roles0”,“email”,“Slug”,“Created Date”,“Modified Date”,“_id”,“logged_in”],“custom.device”:[“Created By”,“Slug”,“Created Date”,“Modified Date”,“_id”],“api.apiconnector2.text_stream”:}},“single_api”:false,“list_api”:true}

How to pass only the list?

Any help?

I don’t think Bubble is passing the list as “pointer” (I don’t even know what it is)… Note that it is printing it correctly as a list of text. The issue seems to be with the plugin. Did you already tried to contact the plugin owner to see if he can help you?

I’m creating the plugin… :))

It’s being passed as an object and not as a list of texts…
I’ve tried everything… I’ve formatted it as text, nothing works…
the ID is passed to the plugin as an object, I need it to be sent as a list of texts…

It says it’s being sent as a list of texts, but when I test it in the plugin, it was sent as an object, and then there’s an error in the script

oooohh ok! I never worked developing a plugin so I don’t know how this information is processed by the plugin editor. But it seems that the object itself is an array of texts. Can’t you extract the text using javascriot?

Something like:

const _pointer = ["Concluída", " Concluída", " Aguardando", " Aguardando", " Aguardando", " Aguardando"];

const result = _pointer.join(", ");
console.log(result);

Format as Text.
This solves…

Should try using JS and make your plugins - use AI to do that !
You can power Bubble beyond its limits !!!
Tks @rpetribu !

This topic was automatically closed after 70 days. New replies are no longer allowed.