You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I can tell, the triggerPipeline method always includes the "variables" attribute in the json sent to the endpoint, even if there are no variables specified. But this returns "variables is invalid." If I send a POST on my own, with a json payload that just includes the "ref" and "token" attributes, it works fine.
How can I remove the "variables" attribute before the payload is sent?
The text was updated successfully, but these errors were encountered:
I've just run into this problem myself. I did however get it to work with a little duplication. If in the variables you send over:-
[ 'token' => 'token', 'ref' => 'ref' ]
and use the same values that you used in the previous 2 parameters to the method call, then everything works as intended. Not sure why this is the case, but discovered it by trial/error.
As far as I can tell, the triggerPipeline method always includes the "variables" attribute in the json sent to the endpoint, even if there are no variables specified. But this returns "variables is invalid." If I send a POST on my own, with a json payload that just includes the "ref" and "token" attributes, it works fine.
How can I remove the "variables" attribute before the payload is sent?
The text was updated successfully, but these errors were encountered: