curl --location 'http://127.0.0.1:8000/api/roles' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {token}' \
--header 'Content-Type: application/json'{
"data": [
{
"id": 1,
"role": "admin"
},
{
"id": 2,
"role": "analyst"
},
{
"id": 3,
"role": "viewer"
},
{
"id": 4,
"role": "pentester"
}
]
}