Creator + Zoho Sign

Creator + Zoho Sign

Hi All,

First off, thank you for everyone's help so far. I am trying to accomplish the following in Zoho Creator: Recall Document & Remind Signer. Both of these functions are not available via deluge so I am trying to use the Zoho Sign API. 

I believe my post call may be incorrect? I get a 'no match found' error. 

  1. //Get Zoho Request ID
    resp = Sign_ID.toLong();
    
    //add recall
    data = resp + "/recall";
    
    // JSON
    response = invokeUrl
    [
        url: "https://sign.zoho.com/api/v1/requests/"
        type: POST
        parameters: data.toString()
    ];
    
    info "Attempting to recall waiver..." + response;