Signatures

Deprecated

Get Signatures

get
Path parameters
merchantNumberstring | nullableRequired

Merchant number.

Responses
200
Returns all collected signatureAgreementCollection on success.
application/json
get
GET /api/legaldocuments/v1/signatures/{merchantNumber} HTTP/1.1
Host: 
Accept: */*
{
  "content": [
    {
      "ipAddress": "text",
      "timestamp": "2025-07-09T07:57:08.661Z",
      "signatureSourceTypeId": 1,
      "signatureSectionTypeId": 1,
      "signerViewedLegalText": true,
      "businessContactId": 1,
      "documentId": "123e4567-e89b-12d3-a456-426614174000"
    }
  ],
  "modifyDateTimeUtc": "2025-07-09T07:57:08.661Z"
}
Deprecated

Update Signatures

put
Path parameters
merchantNumberstring | nullableRequired

Merchant number

Body
modifyDateTimeUtcstring · date-time | nullableRead-onlyOptional
Responses
200
Provides sources for the signature .
application/json
put
PUT /api/legaldocuments/v1/signatures/{merchantNumber} HTTP/1.1
Host: 
Content-Type: application/json-patch+json
Accept: */*
Content-Length: 229

{
  "content": [
    {
      "ipAddress": "text",
      "timestamp": "2025-07-09T07:57:08.661Z",
      "signatureSourceTypeId": 1,
      "signatureSectionTypeId": 1,
      "signerViewedLegalText": true,
      "businessContactId": 1,
      "documentId": "123e4567-e89b-12d3-a456-426614174000"
    }
  ]
}
{
  "content": [
    {
      "ipAddress": "text",
      "timestamp": "2025-07-09T07:57:08.661Z",
      "signatureSourceTypeId": 1,
      "signatureSectionTypeId": 1,
      "signerViewedLegalText": true,
      "businessContactId": 1,
      "documentId": "123e4567-e89b-12d3-a456-426614174000"
    }
  ],
  "modifyDateTimeUtc": "2025-07-09T07:57:08.661Z"
}
Deprecated

Delete Signatures

delete
Path parameters
merchantNumberstring | nullableRequired

Merchant number

Responses
200
Success
delete
DELETE /api/legaldocuments/v1/signatures/{merchantNumber} HTTP/1.1
Host: 
Accept: */*

No content

Was this helpful?