Returns all audit changes for the booth with the date and the username of the user who performed each change.
GET
/api/booths/{id}/audit_history
curl \
--request GET 'http://localhost:4000/api/booths/{id}/audit_history' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"changed_field": "string",
"from_value": "string",
"performed_at": "string",
"to_value": "string",
"username": "string"
}
]
}
Response examples (401)
{
"error": "Error Reason"
}
Response examples (404)
{
"error": "Error Reason"
}