Managing signatures per check in the ZilMoney OCW platform is a straightforward process. Here's how you can implement signature handling:
First, you need to add a signature to the bank account that will be used for check signing. Use the following API endpoint:
POST /api/v3/bankAccounts/{bankAccountId}/signatures
If the payee information already exists in the system, a new payeeId will not be generated. Instead, the existing payeeId will be returned.
| Parameter | Type | Required | Description |
| `signature` | File | **Required** | Signature image file (PNG, JPG, JPEG). Must be no more than 40960Kb |
| `nickName ` | String | **Optional** | The nick name of the signature,Must be no longer than 20 characters |
To get existing signatures for a bank account:
GET /api/v3/bankAccounts/{bankAccountId}/signature
hen creating a check, you can control signature inclusion using the `noSign` parameter:
| Parameter | Type | Description |
| `noSign` | Boolean | If `true`, check will be created without signature. Default: `false` |