action appcenter_stores_list { label: "stores_list" description: "Get all the store details from Storage store table for a particular application." provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/distribution_stores" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "array" items: { description: "ExternalStoreResponse" properties: { created_by: { type: "string" description: "The ID of the principal that created the store." } created_by_principal_type: { type: "string" description: "The type of the principal that created the store." } id: { type: "string" description: "Store id" } intune_details: { description: "Store details for intune" properties: { app_category: { properties: { id: { type: "string" description: "ID for the category." } name: { type: "string" description: "display name for the app category" } } } target_audience: { properties: { id: { type: "string" description: "ID for the target audience/group." } name: { type: "string" description: "display name for the target audience/group" } } } } } name: { type: "string" description: "Store Name" } service_connection_id: { type: "string" description: "Id for the shared service connection. In case of Apple / GooglePlay stores, this connection will be used to connect to the Apple / Google stores in App Center." } track: { type: "string" description: "Store track" enum: ["production", "alpha", "beta", "testflight-internal", "testflight-external"] } type: { type: "string" description: "Store Type" } } } } }