-1

I need to create a console app to download all signed docusign documents (envelope by envelope) and then upload all Salesforce environment ... what is the best way to get auth token? it seems that every single way requires redirectUri - which I am working with a console app and i do not have redirectUri.

Thanks, John

John Lee
  • 51
  • 1
  • 3

1 Answers1

0

JWT only requires a redirect URI for the initial consent call. You do it once, not using your app, but constructing the URI that will give you consent and then you don't need to ever do this again. JWT is probably what you want for this type of app.

Inbar Gazit
  • 12,566
  • 1
  • 16
  • 23
  • Thanks Inbar! I found a way to grant app permission from organization panel but I do not know what are the accepted permissions/scopes - signature, extended and impersonate are 3 i found, is there an one called full permission for my case? – John Lee Nov 27 '19 at 17:12
  • there's no "full" as far as I know and you only need signature and impersonate for what you are building – Inbar Gazit Nov 27 '19 at 18:10