action appcenter_branch_configurations_get { label: "branchConfigurations_get" description: "Gets the branch configuration" provider: appcenter method: GET path: "/v0.1/apps/{owner_name}/{app_name}/branches/{branch}/config" encoding: json input: { type: "object" properties: { app_name: { type: "string" } branch: { type: "string" } owner_name: { type: "string" } } required: ["app_name", "branch", "owner_name"] additionalProperties: false } output: { type: "object" } }