action appcenter_analytics_list_custom_properties { label: "Analytics_ListCustomProperties" description: "Get list of custom properties." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/analytics/audiences/metadata/custom_properties" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { description: "List of device properties." required: ["values"] properties: { values: { type: "object" description: "List of device properties." } } } }