action bigredcloud_sales_rep_put { label: "Updates an existing Sale Rep." provider: bigredcloud method: PUT path: "/v1/salesReps/{id}" encoding: json input: { type: "object" properties: { code: { type: "string" } companyId: { type: "integer" format: "int64" } email: { type: "string" } id: { type: "integer" format: "int64" } name: { type: "string" } phone: { type: "string" } timeStamp: { type: "string" format: "byte" } } required: ["id"] additionalProperties: false } output: { type: "object" } }