Hi everyone!
I am currently using python to move a card to a certain phase in my pipe, using the following code:
payload = {
"query": f"""
mutation {{
moveCardToPhase (input: {{
card_id: "1085486680",
destination_phase_id: "329687449"
}}) {{
card {{
id
current_phase {{
name
}}
}}
}}
}}
"""
}
response = requests.request("POST", pipefy_url, json=payload, headers=pipefy_headers)
print(response.text)
However, right now response.text gives me the following error:
{"data":{"moveCardToPhase":null},"errors":[{"message":"Card could not be moved to phase id: 329687449","locations":[{"line":3,"column":29}],"path":["moveCardToPhase"]}]}
Has anyone encountered this issue before?
Thanks in advance!