Protect Your REST APIs and PII with JWT
How it works Simple way to Protect your REST APIs and PII (Personally Identifiable Information) using JWT Tokens. How it works To protect your customer data (PII like card number) that is exchanged between two parties/channels JWT Token are helpful. HTTPS only provides network level security but data still visible to the uses who gains authorization to the system. plain-api.sh $/> curl https://yourdomain.com/customers [ { "id": 1, "name": "James", "social": "999-99-9999", "phonoe": "111-111-1111", } ] Mask Sensitive information of API response for data security. masking_senstive_info.sh $/> curl https://yourdomain.com/customers [ { "id": "Q-VQ7HafDZ8aD6J_UJD62G3iUMyZBSGguf3pSBnLCgQh7FhA==", "name": "James", "social": "####-##-9999", &quo