Get Signing Result
This endpoint allows the relying party (RP) to actively query the signing results and obtain the signed document after completion.
Path
GET
/sign-requests/:request_id/signed_doc
Headers
Content-Type
application/json
Authorization
<token>
Authorization token
RP should sign the signature parameter into a JWT token as authorization token.
Token Type: Standard JWT (JSON Web Token)
Payload:
exchange_code
: The exchange_code returned when initiate sign request.jti
: Standard JWT ID, a unique identifier for the JWT, must be a UUID.iat
&exp
: Standard Issued At / Expiration timestamp of JWT. Must issued within 2 minutes.
Example:
Body
Empty
Response
signed_doc_url
: Where you can download the signed document.exp
: Expiration time (in UNIX second) ofsigned_doc_url
.
Similar to the successful signing webhook, the signed_doc_url
will only be valid for 2 minutes. RPs should download the document immediately for their own application. We do not recommend forwarding this URL to the user.
Sample request
Last updated
Was this helpful?