action appcenter_symbols_list { label: "symbols_list" description: "Returns the list of all symbols for the provided application" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/symbols" encoding: json input: { type: "object" properties: { app_name: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "owner_name"] additionalProperties: false } output: { type: "array" description: "A response containing the list of symbols matching the specified filter (if any was provided)" items: { required: ["symbol_id", "platform", "type", "app_id", "url", "origin", "alternate_symbol_ids", "status", "symbol_upload_id"] properties: { alternate_symbol_ids: { type: "array" description: "The other symbols in the same file" items: { type: "string" } } app_id: { type: "string" description: "The application that this symbol belongs to" } build: { type: "string" description: "The build number. Optional for Apple. Required for Android." } origin: { type: "string" description: "The origin of the symbol file" enum: ["System", "User"] } platform: { type: "string" description: "The platform that this symbol is associated with" } status: { type: "string" description: "Whether the symbol is ignored." enum: ["available", "ignored"] } symbol_id: { type: "string" description: "The unique id for this symbol (uuid)" } symbol_upload_id: { type: "string" description: "The id of the symbol upload this symbol belongs to." } type: { type: "string" description: "The type of the symbol for the current symbol upload" enum: ["Apple", "JavaScript", "Breakpad", "AndroidProguard", "UWP"] } url: { type: "string" description: "The path name of the symbol file in blob storage" } version: { type: "string" description: "The version number. Optional for Apple. Required for Android." } } } } }