Submitting the Signature

Merchant’s consent is collected through signature submission to complete the onboarding application. Once all information is added, signatures can be submitted electronically or by uploading signed document.

Electronic Signature Submission

Merchants can digitally accept the terms and conditions, offering a streamlined and secure experience.

Process:

  1. Mark at least one business contact as a signer.

  2. Present the legal Terms and Conditions to the signer for review.

  3. Provide an option to confirm acceptance (for example, a checkbox).

  4. Submit the collected data to the Signatures endpoint to complete the submission.

Use the POST method /api/BoardingManagement/v1.0/Applications/{merchantNumber}/SubmitSignatures to successfully submit the signature. Refer to the below sample code for reference:

{
  "metadata": {
    "exchangeId": "ID-7fefaf13-978d-4eca-b1a2-3eefa9e4f719",
    "timestamp": "2020-01-07T16:32:38.0295227Z"
  }
}
Signature Submission via Document Upload

Merchants preferring physical signatures can print, sign, and then upload the signed documents for submission.

Process:

  1. Mark at least one business contact as a signer.

  2. Allow the merchant to upload the signed documents through your application.

  3. Submit the uploaded document to the Upload Document endpoint.

Use POST method to /api/demographics/v1/Documents/{merchantNumber} upload a document. Refer to the below sample code for reference:

"string"
  1. Once the document is uploaded, use the Signatures endpoint to confirm and submit the signature.

Use the POST method /api/BoardingManagement/v1.0/Applications/{merchantNumber}/SubmitSignatures to successfully submit the signature. Refer to the below sample code for reference:

{
  "metadata": {
    "exchangeId": "ID-7fefaf13-978d-4eca-b1a2-3eefa9e4f719",
    "timestamp": "2020-01-07T16:32:38.0295227Z"
  }

When a merchant submits signatures, the system validates the submitted information. If any errors are found, they are returned in the response. If the data is valid, the signatures are accepted, and the submission is complete.

Last updated

Was this helpful?