Retrieving a Single Mandate
Overview
This API endpoint retrieves the details of an existing mandate.
GET - /mandates/{{mandate_id}}
{
"mandate_id": "a7e3fde5-5b83-44f4-9915-782bc7121717",
"status": "rejected",
"mandate_type": "direct_debit",
"reference": "reference",
"payer_detail": {
"account_name": "Mr Test",
"account_number_ending": "1234"
},
"detail": {
"scheme": "bacs",
"report": "AUDDIS",
"reason_code": "3",
"reason_description": "Account Transferred",
"rejected_date": "2023-10-22"
},
"links": [
{
"rel": "customer",
"href": "/v1/customer/{{customer_id}}"
}
],
"created": "2023-10-18T09:46:00.778Z",
"last_updated": "2023-10-22T09:46:00.778Z",
"custom_data": ""
}
This JSON response provides information about a rejected mandate.
Updated 9 months ago