Mindbody · Schema

SalesRep

Implementation of the 'SalesRep' model.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
FirstName string The first name of the sales representative.
Id integer The staff ID of the sales representative.
LastName string The last name of the sales representative.
SalesRepNumber integer This value is the number that identifies the type of sales representative assigned to this client. One to six types of sales representatives can be assigned to a client at any given time, depending on
SalesRepNumbers array A list of the different types of sales representative functions assigned to this staff member.
View JSON Schema on GitHub

JSON Schema

public-api-v6-sales-rep-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-schema/public-api-v6-sales-rep-schema.json",
  "title": "SalesRep",
  "description": "Implementation of the 'SalesRep' model.",
  "type": "object",
  "properties": {
    "FirstName": {
      "type": "string",
      "description": "The first name of the sales representative.",
      "example": "Alex"
    },
    "Id": {
      "type": "integer",
      "format": "int32",
      "description": "The staff ID of the sales representative.",
      "example": 123456
    },
    "LastName": {
      "type": "string",
      "description": "The last name of the sales representative.",
      "example": "Lane"
    },
    "SalesRepNumber": {
      "type": "integer",
      "format": "int32",
      "description": "This value is the number that identifies the type of sales representative assigned to this client. One to six types of sales representatives can be assigned to a client at any given time, depending on site settings.",
      "example": 1
    },
    "SalesRepNumbers": {
      "type": "array",
      "items": {
        "type": "integer",
        "format": "int32"
      },
      "description": "A list of the different types of sales representative functions assigned to this staff member.",
      "example": [
        1
      ]
    }
  }
}