docusignapi - Does RequestEnvelopeHistoryToken exist in SOAP API? -
I am trying to use RequestEnvelopeHistoryToken via the SOAP API. My solution is currently sent undetected, sending thanks to the requestSenderToken method, but RequestEnvelopeHistoryToken does not exist within my example of DSAPIService. Has this method been disliked? I am currently using SOAP API exclusively, but I would consider using REST for this purpose if the same functionality exists. Public class ServiceWrapper: DSAPIService {// Override of GetWebRequest} Public class DocuSignJob {public string GetSenderToken (string envelope, string accounted) {string sendurl, historyurl; (ServiceWrapper client = New ServiceWrapper ()) using {sendurl = client.RequestSenderToken (_envelopeID, accounting, "http://www.google.com"); // work historyurl = client.RequestEnvelopeHistoryToken (envelope, "http://www.google.com"); // There is no definition for ServiceWrapper 'RequestEnvelopeHistoryToken}}}
I consider (Probably legacy, maybe bug, maybe some more) but RequestEnvelopeHistoryToken
SOAP call api.asmx
is not present in the service, but dsapi.asmx
service :
Try to kill it and it should work
Update:
After reading some more documents, it looks like the difference of one or two ways that between the APIs and the DSAP services If the difference is you look for your call certified How do require a WS-Security UsernameToken for API service, DSAPI requires an HTTP Auth header
More information.
Comments
Post a Comment