18. Privacy & Security
18.1 Set Privacy PIN
POST /api/v1/privacy/pin/set
Set privacy PIN for sensitive data access.
Request Body:
{
"pin": "123456"
}
Response:
{
"message": "Privacy PIN set successfully"
}
18.2 Verify Privacy PIN
POST /api/v1/privacy/pin/verify
Verify privacy PIN before accessing sensitive data.
Request Body:
{
"pin": "123456"
}
Response:
{
"verified": true,
"expiresIn": 3600
}