curl --location --request PUT '/agent/access/0' \
--header 'Ocp-Apim-Subscription-Key: {{your-api-key}}' \
--header 'Authorization: Bearer {{your-access-token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"access": "Public"
}'
{
"success": true,
"message": "status code 201: Agent Access Data updated successfully",
"data": {
"id": 3,
"agent_name": "testing",
"access": "Public"
}
}