.png)
Unlock the specified user
Use the Unlock User endpoint (PUT /customers/{customerId}:unlock-user) for unlocking the specified FI customer. To perform the unlock operation on the specified FI customer, the customer must have a
locked
status. Once the end user has been unlocked, they can log in to the online application.ENDPOINTS
put
/v1/customers/{customerId}:unlock-user
Header parameters
Collapse
correlationId
string
required
UUID that uniquely identifies the request. This id allows the request to be traced through the entire request and response flow.
Authorization
string
required
Standard OAuth 2.0 access token. A string composed of 'Bearer' + '(space)' + '{token}'
Body parameters
Collapse
Path parameters
Collapse
customerId
string
required
Unique identifier of financial institution customer
Responses
Collapse
204
User unlocked successfully
Response Body
null
400
Bad Request
Response Body
{"status":0,"message":"string","code":"string"}
401
Unauthorized
Response Body
{"status":0,"message":"string","code":"string"}
403
Forbidden
Response Body
{"status":0,"message":"string","code":"string"}
404
User not found
Response Body
{"status":0,"message":"string","code":"string"}
500
Server error
Response Body
{"status":0,"message":"string","code":"string"}
curl -X 'PUT' \
'https://api.candescent.com/digitalbanking/ux-users/v1/customers/{customerId}:unlock-user' \
-H 'authorization: Bearer 18FaavwuGejYXBhj7grtrP57ZbCX' \
-H 'correlationid: f8187c63-678f-4f0c-9263-46723794661a' \
-H 'accept: application/json' \