curl --location --request GET 'https://prod.your-api-server.com/customer/v2/compatible-devices-lite' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {{token}}'{
"success": true,
"code": "COMPATIBLE_DEVICES_RETRIEVED",
"message": "Compatible devices retrieved successfully",
"data": {
"data": [
{
"os": "iOS",
"brand": "Apple",
"name": "iPhone 14 Pro"
},
{
"os": "Android",
"brand": "Samsung",
"name": "Galaxy S23"
}
]
},
"timestamp": "2025-10-29T12:30:00.000Z"
}