Plugin response workflow

How do I set an input field’s value from a plugin response in a workflow? I’m using the Anthropic plugin and want to fill form fields with the JSON response.

If the Anthropic step is returning JSON as text, the clean pattern is to map it into explicit workflow outputs before trying to populate the input fields.

For example, define the fields you expect:

name=contact.name|required|type=text
email=contact.email|type=text
summary=summary|required|type=text

Then only set the input values if the mapping step says the required fields are present. That gives you a clearer failure than trying to chase nested response fields directly in the next expression.

I built SchemaField Mapper for this exact handoff: JSON/text in, required paths checked, Bubble-friendly mapped values out.

Demo:
https://schemafield-mapper-demo.bubbleapps.io/version-test

Marketplace:
https://bubble.io/plugin/schemafield-mapper-1779472610375x606681953783513100

Look at the new json function on the API connector, I think it can help you