action jumpseller_get_products_status_status_count_json { label: "Count Products filtered by status." provider: jumpseller method: GET path: "/products/status/{status}/count.json" encoding: json input: { type: "object" properties: { status: { type: "string" enum: ["available", "not-available", "disabled"] } } required: ["status"] additionalProperties: false } output: { properties: { count: { type: "integer" format: "int32" } } } }