# The Mandate object

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | string | yes |  |
| `method` | string | yes | One of: `directdebit`, `creditcard`. |
| `status` | string | yes | One of: `valid`, `invalid`, `pending`. |
| `custom_mandate_reference` | string | no |  |
| `signature_date` | string | no |  |
| `details` | object | yes |  |
| `details.consumer_name` | string | no |  |
| `details.consumer_account` | string | no |  |
| `details.consumer_bic` | string | no |  |
| `details.card_holder` | string | no |  |
| `details.card_number` | string | no |  |
| `details.card_expiry_date` | string | no |  |
| `details.card_label` | string | no |  |
| `details.card_fingerprint` | string | no |  |

```json
{
    "id": "mdt_abc123",
    "method": "directdebit",
    "status": "valid",
    "custom_mandate_reference": "MY-REF-001",
    "signature_date": "2025-01-15",
    "details": {
        "consumer_name": "John Doe",
        "consumer_account": "NL55INGB0000000000",
        "consumer_bic": "INGBNL2A",
        "card_holder": "J. Doe",
        "card_number": "6787",
        "card_expiry_date": "2028-12-31",
        "card_label": "Mastercard",
        "card_fingerprint": "Fh94dX2V"
    }
}
```
