Zoho Deluge - JSON POST

539 Views Asked by At

I am trying to use a POST command in deluge to recall a document. When I make the call I get back a no file found (I have verified the id is correct).

The format should come out like this: POST https://sign.zoho.com/api/v1/requests/[Request ID]/recall https://www.zoho.com/sign/api/#recall-document

What am I doing incorrect?

//Get Zoho Request ID
resp = Sign_ID.toLong();

//add recall command
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;

Verified Sign_ID is returning correct value Verified correct API call Verified error code

1

There are 1 best solutions below

0
On

Other than what @ZohoCoder have mentioned.
From the documentation, it seems what you have done is almost right.

// Get Zoho Request ID
resp = Sign_ID.toLong();

// use a variable for the URL of the request
urlRequest =  "https://sign.zoho.com/api/v1/requests/" + resp + "/recall";

// JSON
response = invokeUrl
[
    url: urlRequest
    type: POST
];

info "Attempting to recall waiver..." + response;