function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Savvy AdminSavvy Admin 

S-Docs following API cannot generate doc automatically with zero-click

Hi All,

I followed the instruction on the S-Docs documentation wrting something like 

SDOC.SDBatch.createSDoc(UserInfo.getSessionId(),'id='+opp.id+'&Object=Custom_Opportunity__c&doclist=a07N0000006LbCU');

However, in my testing, the documents had never been generated.

I had a look at Apex job, it says something like

26/11/2015 4:35 PM Future Completed   0 0 0 Username 26/11/2015 4:35 PM SDBatch createSDoc 707N000000MAd2n

Do not know why it is future method and although it is completed, 0 batch was executed.

I had a try on 

SDOC.SDBatch.createSDoc('',username,'id='+opp.id+'&Object=Custom_Opportunity__c&doclist=a07N0000006LbCU');

which is mentioned on the SDocs document. However, the system says there isn't a method can accept creatSDoc(string, string, string).

Is there anyone that are famliar with SDocs?

Thanks
Best Answer chosen by Savvy Admin
Savvy AdminSavvy Admin
On http://www.sdocs.com/documentation?p=api , they did not explain the attribute "oneclick" in CreateURL, but included "&oneclick=1" in the given examples.

After adding "&oneclick=1" in the line, I successfully created the document automatically.

From my point of view, the documentation is carelessly prepared. Perhaps SDocs will provide better documentation and better service for paid users?

Anyway, my problem is solved.