action appcenter_commits_list_by_sha_list { label: "commits_listByShaList" description: "Returns commit information for a batch of shas" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/commits/batch" encoding: json input: { type: "object" properties: { app_name: { type: "string" } hashes: { type: "array" items: { type: "string" } } owner_name: { type: "string" } } required: ["app_name", "hashes", "owner_name"] additionalProperties: false } output: { type: "array" description: "A list of commits" items: { type: "object" } } }