addExtraDoc
Overview
Parameters:
Return:
ExtraDocResponse - success
Exception - failure
To add this extra document, we need:
set your api token.
set your doc token.
set your extra doc.
call the method.
Usage:
Import the relevant components:
import body.doc.ExtraDoc;
import docs.DocRequests;
import response.ExtraDocResponse;
import services.JsonConverter;
Set your Api Token:
String apiToken = "YOUR TOKEN";
Set your doc token.
String docToken = "DOC TOKEN";
Set your extra doc with class with the class ExtraDoc:
ExtraDoc extraDoc = ExtraDoc.extraDocBuilder()
.name("Extra doc")
.url_pdf("https://zapsign.s3.amazonaws.com/2022/1/pdf/63d19807-cbfa-4b51-8571-215ad0f4eb98/ca42e7be-c932-482c-b70b-92ad7aea04be.pdf")
.build();
Call the method addExtraDoc and receive the ExtraDocResponse class or an error message as a response:
try {
ExtraDocResponse extraDocResponse = new DocRequests(apiToken).addExtraDoc(docToken, extraDoc);
String jsonExtraDocs = new JsonConverter().extraDocToJson(extraDocResponse);
System.out.println(jsonExtraDocs);
}
catch(Exception exceptionError) {
System.out.println(exceptionError.getMessage());
}
Example:
import body.doc.ExtraDoc;
import docs.DocRequests;
import response.ExtraDocResponse;
import services.JsonConverter;
public class AddExtraDoc {
public static void main(String[] args) throws Exception {
String apiToken = "YOUR TOKEN";
String docToken = "DOC TOKEN";
ExtraDoc extraDoc = ExtraDoc.extraDocBuilder()
.name("Extra doc")
.url_pdf("https://zapsign.s3.amazonaws.com/2022/1/pdf/63d19807-cbfa-4b51-8571-215ad0f4eb98/ca42e7be-c932-482c-b70b-92ad7aea04be.pdf")
.build();
try {
ExtraDocResponse extraDocResponse = new DocRequests(apiToken).addExtraDoc(docToken, extraDoc);
String jsonExtraDocs = new JsonConverter().extraDocToJson(extraDocResponse);
System.out.println(jsonExtraDocs);
}
catch(Exception exceptionError) {
System.out.println(exceptionError.getMessage());
}
}
}
Was this helpful?