# Unlock User

| **API URL**     | {{url}}/user-service/user/unlock |
| --------------- | -------------------------------- |
| **Method**      | POST                             |
| **Description** | To unlock user                   |

#### **Input** <a href="#unlockuser-input" id="unlockuser-input"></a>

| **Field Name**         | **Type** | **Mandatory** | **Example**               |
| ---------------------- | -------- | ------------- | ------------------------- |
| Authorization (Header) |          |               | Token form login response |
| id                     | String   | Yes           | User ID                   |

#### **Sample Input:** <a href="#unlockuser-sampleinput" id="unlockuser-sampleinput"></a>

{ "id":"395" }

#### **Sample Output:** <a href="#unlockuser-sampleoutput" id="unlockuser-sampleoutput"></a>

```
  {
    "message": "User unlocked successfully.",
    "entity": null,
    "status": true,
    "entityList": null,
    "responseCode": 200,
    "totalCount": null
}
```
