Signatures
Path parameters
merchantNumberstring | nullableRequired
Merchant number.
Responses
200
Returns all collected signatureAgreementCollection on success.
application/json
400
If merchant number is null or empty.
application/json
404
Signatures not found.
application/json
500
Error occurred retrieving data.
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"
}
Path parameters
merchantNumberstring | nullableRequired
Merchant number
Body
modifyDateTimeUtcstring · date-time | nullableRead-onlyOptional
Responses
200
Provides sources for the signature .
application/json
400
If merchant number is null or empty, or model-state is invalid
application/json
404
Resource not found exception.
application/json
500
Error occurred saving data.
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"
}
Was this helpful?