Unblock mandate
                POST https://{domainname}/v1/{merchantId}/mandates/{uniqueMandateReference}/unblock
            
            Mandates
The mandates REST services allow you to manage mandates, used in SEPA Direct Debit payments.
Request
Updates the mandate status to ACTIVE.
Responses
Please find below an overview of the possible responses.
Response 200 - OKGetMandateResponse
Unblocking the mandate succeeded. Data can be found in the body.
| 
							
									Properties
							
							 | |||
| Property | Type | Required | Details | 
|---|---|---|---|
| object | no | read close | |
| alias | string | no | read close | 
| 
		
			close
		
		 DescriptionAn alias for the mandate. This can be used to visually represent the mandate. Do not include any unobfuscated sensitive data in the alias. Default value if not provided is the obfuscated IBAN of the customer. | |||
| object | no | read close | |
| 
		
			close
		
		 DescriptionCustomer object containing customer specific inputs 
 | |||
| object | depends | read close | |
| accountHolderName | string (30) | depends | read close | 
| 
		
			close
		
		 DescriptionName in which the account is held. | |||
| iban | string (50) | depends | read close | 
| 
		
			close
		
		 DescriptionThe IBAN is the International Bank Account Number. It is an internationally agreed format for the BBAN and includes the ISO country code and two check digits. | |||
| companyName | string (40) | no | read close | 
| 
		
			close
		
		 DescriptionName of company, as a customer | |||
| object | no | read close | |
| 
		
			close
		
		 DescriptionObject containing contact details like email address and phone number 
 | |||
| emailAddress | string (70) | no | read close | 
| 
		
			close
		
		 DescriptionEmail address of the customer | |||
| object | depends | read close | |
| city | string (40) | depends | read close | 
| 
		
			close
		
		 DescriptionCity | |||
| countryCode | string (2) | depends | read close | 
| 
		
			close
		
		 DescriptionISO 3166-1 alpha-2 country code | |||
| houseNumber | string (15) | no | read close | 
| 
		
			close
		
		 DescriptionHouse number | |||
| street | string (50) | depends | read close | 
| 
		
			close
		
		 DescriptionStreetname | |||
| zip | string (10) | depends | read close | 
| 
		
			close
		
		 DescriptionZip code | |||
| object | depends | read close | |
| 
		
			close
		
		 DescriptionObject containing personal information of the customer 
 | |||
| object | depends | read close | |
| 
		
			close
		
		 DescriptionObject containing the name details of the customer 
 | |||
| firstName | string (15) | depends | read close | 
| 
		
			close
		
		 DescriptionGiven name(s) or first name(s) of the customer | |||
| surname | string (70) | depends | read close | 
| 
		
			close
		
		 DescriptionSurname(s) or last name(s) of the customer | |||
| title | enum | depends | read close | 
| 
		
			close
		
		 DescriptionObject containing the title of the customer (Mr, Miss or Mrs) | |||
| customerReference | string (35) | yes | read close | 
| 
		
			close
		
		 DescriptionThe unique identifier of the customer to which this mandate is applicable | |||
| recurrenceType | enum | yes | read close | 
| 
		
			close
		
		 DescriptionSpecifieds whether the mandate is for one-off or recurring payments. | |||
| status | enum | no | read close | 
| 
		
			close
		
		 DescriptionThe status of the mandate. Possible values are:
 
 | |||
| uniqueMandateReference | string | no | read close | 
| 
		
			close
		
		 DescriptionThe unique identifier of the mandate | |||
Response example
                        SDK: JSON
                        
                        
                
                This scenario you will probably use the most
- 
                        { "mandate" : { "customerReference" : "idonthaveareference", "customer" : { "bankAccountIban" : { "iban" : "DE46720200700359736690" }, "mandateAddress" : { "street" : "Woestijnweg", "city" : "Monumentenvallei", "zip" : "1337XD", "countryCode" : "NL" }, "companyName" : "Acme labs", "contactDetails" : { "emailAddress" : "wile.e.coyote@acmelabs.com" }, "personalInformation" : { "name" : { "firstName" : "Wile", "surname" : "Coyote" }, "title" : "Miss" } }, "recurrenceType" : "UNIQUE", "status" : "ACTIVE", "uniqueMandateReference" : "42268d8067df43e18a50a2ebf4bdb729" } }
Response 400 - Bad requestErrorResponse
| 
							
									Properties
							
							 | |||
| Property | Type | Required | Details | 
|---|---|---|---|
| errorId | string | yes | read close | 
| 
		
			close
		
		 DescriptionUnique reference, for debugging purposes, of this error response | |||
| array of object | yes | read close | |
| 
		
			close
		
		 DescriptionList of one or more errors | |||
| object | no | read close | |
| category | string | no | read close | 
| 
		
			close
		
		 DescriptionCategory the error belongs to. The category should give an indication of the type of error you are dealing with.
Possible values:
 
 | |||
| code | string | yes | read close | 
| 
		
			close
		
		 DescriptionError code | |||
| httpStatusCode | integer | no | read close | 
| 
		
			close
		
		 DescriptionHTTP status code for this error that can be used to determine the type of error | |||
| id | string | no | read close | 
| 
		
			close
		
		 DescriptionID of the error. This is a short human-readable message that briefly describes the error. | |||
| message | string | no | read close | 
| 
		
			close
		
		 DescriptionHuman-readable error message that is not meant to be relayed to customer as it might tip off people who are trying to commit fraud | |||
| propertyName | string | no | read close | 
| 
		
			close
		
		 DescriptionReturned only if the error relates to a value that was missing or incorrect. Contains a location path to the value as a JSonata query. Some common examples: 
 | |||
| requestId | string | no | read close | 
| 
		
			close
		
		 DescriptionID of the request that can be used for debugging purposes | |||
Response example
                        SDK: JSON
                        
                        
                
                This scenario you will probably use the most
- 
                        { "errorId" : "15eabcd5-30b3-479b-ae03-67bb351c07e6-00000092", "errors" : [ { "code" : "20000000", "propertyName" : "customer.billingAddress.street", "message" : "PARAMETER_NOT_FOUND_IN_REQUEST" } ] }
Response 404 - Not foundErrorResponse
Mandate not found.
| 
							
									Properties
							
							 | |||
| Property | Type | Required | Details | 
|---|---|---|---|
| errorId | string | yes | read close | 
| 
		
			close
		
		 DescriptionUnique reference, for debugging purposes, of this error response | |||
| array of object | yes | read close | |
| 
		
			close
		
		 DescriptionList of one or more errors | |||
| object | no | read close | |
| category | string | no | read close | 
| 
		
			close
		
		 DescriptionCategory the error belongs to. The category should give an indication of the type of error you are dealing with.
Possible values:
 
 | |||
| code | string | yes | read close | 
| 
		
			close
		
		 DescriptionError code | |||
| httpStatusCode | integer | no | read close | 
| 
		
			close
		
		 DescriptionHTTP status code for this error that can be used to determine the type of error | |||
| id | string | no | read close | 
| 
		
			close
		
		 DescriptionID of the error. This is a short human-readable message that briefly describes the error. | |||
| message | string | no | read close | 
| 
		
			close
		
		 DescriptionHuman-readable error message that is not meant to be relayed to customer as it might tip off people who are trying to commit fraud | |||
| propertyName | string | no | read close | 
| 
		
			close
		
		 DescriptionReturned only if the error relates to a value that was missing or incorrect. Contains a location path to the value as a JSonata query. Some common examples: 
 | |||
| requestId | string | no | read close | 
| 
		
			close
		
		 DescriptionID of the request that can be used for debugging purposes | |||
Response example
                        SDK: JSON
                        
                        
                
                This scenario you will probably use the most
- 
                        { "errorId" : "15eabcd5-30b3-479b-ae03-67bb351c07e6-00000092", "errors" : [ { "code" : "20000000", "message" : "MANDATE_NOT_FOUND" } ] }