Skip to main content

SignatureDTO

This document describes the SignatureDTO, a data structure used by the NoWallet API.
It provides the digital signature associated with a transaction, ensuring the integrity and authenticity of the payment request between the merchant and ClaPay.

JSON Response Example

The JSON snippet shows a typical SignatureDTO structure.
It contains a single field:

  • signature, a unique identifier generated by ClaPay to secure and reference the transaction.

This example allows developers to quickly understand the expected payload format when working with transaction signatures.

Example Payload

Here is an example of a valid payload for the SignatureDTO:

{
"signature": "EXAMPLE-ba325fc6-ca09eb7b4dce"
}

Properties

The Properties table explains the fields included in the SignatureDTO:

NameTypeRequiredRestrictionsDescription
signaturestringtruenoneA transaction identifier generated by ClaPay, used to verify and track the transaction.

This ensures developers know how to interpret and handle the signature within their integration workflows.

This page was helpful?