(Re)fetch per-recipient signing links (headless delivery)
POST
/document/signing-links/
const url = 'https://app.qsig.in/backend/othercompanyapi/document/signing-links/';const options = { method: 'POST', headers: {'X-Api-Key': '<X-Api-Key>', 'Content-Type': 'application/json'}, body: '{"companyDetails":{"api_key":"example"},"document_id":1}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://app.qsig.in/backend/othercompanyapi/document/signing-links/ \ --header 'Content-Type: application/json' \ --header 'X-Api-Key: <X-Api-Key>' \ --data '{ "companyDetails": { "api_key": "example" }, "document_id": 1 }'Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ” Media type application/json
object
companyDetails
object
api_key
string
document_id
integer
Example generated
{ "companyDetails": { "api_key": "example" }, "document_id": 1}Responses
Section titled “ Responses ”Signing_links array