Skip to main content

Hey,

 

So I can create a card which works fine via Javascript, the issue I’m facing is populating the radio field.

 

Here’s my code:

const query = `mutation {
createCard(input: {
pipe_id:302543188,
title: "New card 2",
fields_attributes:b
{field_id: "options", value: "Yes"},
],
}) {
card {
title
}
}
}`

 

The field in question has a name “Options” with a yes and no option.

 

Any help would be great.

Hi!

 

The problem is thats the correct param is “field_value”, not only “value”. If you correct it, it should work fine. You can see a example here: https://developers.pipefy.com/reference/cards

 

Let me know if that worked!


Thanks, can’t believe I missed that 🤦🏻


Reply