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

NameTypeDescription

Authorization

string

esignon {token}

Content-Type

string

application/json

Request Body

NameTypeDescription

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":{}
}

Last updated