action bigredcloud_get_v1_sales_reps_id { label: "Returns information about a single SaleRep." provider: bigredcloud method: GET path: "/v1/salesReps/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { 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" } } } }