docusign / connect-node-listener-aws

Connect listener example for AWS: a Node.js listener
MIT License
5 stars 3 forks source link

how can I get the Enqueue url #1

Closed zhangz4 closed 4 years ago

zhangz4 commented 4 years ago

in the project connect-csharp-worker-aws the Enqueue url is used, where can i get the Enqueue url

LarryKlugerDS commented 4 years ago

You mean the QUEUE_URL setting?

That's the queue url from the Simple Queuing Service queue. See step 6 of the installation instructions.

zhangz4 commented 4 years ago

Thank you for your answer. I want to know the value in bold below of project connect-csharp-worker-aws Install the example Connect listener for AWS on AWS. At the end of this step, you will have the Queue URL, Queue Region and Enqueue url that you need for the next step.

LarryKlugerDS commented 4 years ago

The Enqueue url is the url of the Lambda listener. It is used in two places:

  1. It is used in the DocuSign eSignature Administration tool to set up the Connect webhook connection.
  2. It is used to test the AWS system. It is used as the TEST_ENQUEUE_URL setting in the worker's configuration file. C# example.

It is the API endpoint field in this screenshot: API Gateway panel

zhangz4 commented 4 years ago

Thank you very very much.

LarryKlugerDS commented 4 years ago

Oops, I was wrong. Please see my updated comments, above.

LarryKlugerDS commented 4 years ago

The enqueue URL is used by the worker to test the listener. The worker sends a message to the listener as if the worker is the DocuSign Connect system.

I'm sorry for the confusion.

zhangz4 commented 4 years ago

I got it. thanks for your answer.