eSignon
ENG
ENG
  • API Description
  • Issuance
    • issue authentication token
  • Document
    • Start
      • Start email sending
      • Start email sending - ExportAPI Description
      • Bulk Contract Start
    • Search
      • Search with the specific field value.
      • Search by period
      • Search all documents
    • Change Status
      • Approval, Rejection
      • Cancel, disposal
    • Create Download URL
    • Resend
  • TEMPLATE
    • Search Template Info
Powered by GitBook
On this page

Was this helpful?

  1. Document

Create Download URL

Create URL for downloading the document using the company ID and document ID.

Can only access documents where users who retain the token values entered under Authorization can view. (logged-in users)

The created URL is valid for 5 minutes.

workflow_download

POST https://docs.esignon.net/workflow/download

Headers

Name
Type
Description

Authorization

string

esignon {token}

Content-Type

string

application/json

Request Body

Name
Type
Description

workflow_id

string

ID of completed document

client_id

string

ID issued by esignon

{
	"header":{
		"response_code": "",
		"result_code": "00",
		"result_msg": "Success",
		"session_id": ""
	},
	"body":{
		"cert_url": "{History Certificate Download URL}",
		"doc_url": "{Document Download URL}",
		"workflow_name": "{Completed Document Name}"
	}
}

Example) Request Body

{
  "client_id":"{ID issued by esignon}",
	"workflow_id": "{ID of completed document}"
}

Example) Response Body / Error

{
    "header":{
        "response_code": "",
        "result_code": "{Result code}",
        "result_msg": "{'Message by code'}",
        "session_id": ""
    },
    "body":{}
}
PreviousCancel, disposalNextResend

Last updated 4 years ago

Was this helpful?