We added custom fields to service cases in Power Apps (priority_reason, escalation_notes, sla_override_flag) but they don’t appear in API responses. Standard fields like title and status return fine, but our custom fields are missing from the JSON. Query:
GET /api/data/v9.2/incidents?$select=title,new_priorityreason
Authorization: Bearer {token}
The response includes title but new_priorityreason is null even though it has data in the UI. We need these fields for our reporting dashboard that pulls case data every hour. Is this a schema naming issue or an API permissions problem with Power Apps customizations?