Skip to main content
GET
/
vLatest
/
action
/
glasscore
/
person
List Person
curl --request GET \
  --url https://api.glass.fm/vLatest/action/glasscore/person
{
  "c_org": "<string>",
  "city": "<string>",
  "dateOfBirth": "<string>",
  "email": "<string>",
  "id": 123,
  "isApplicant": true,
  "isStaff": true,
  "nameFirst": "<string>",
  "nameFirstLast": "<string>",
  "nameLast": "<string>",
  "OrgId": 123,
  "phone": "<string>",
  "RandomPoolStatusId": 123,
  "state": "<string>",
  "streetPrimary": "<string>",
  "streetSecondary": "<string>",
  "UserId": 123,
  "zip": "<string>"
}

Query Parameters

return
string

Comma-separated list of specific fields to return/append in the response. See isAdditionalData for more details.

Example:

"id,nameFirst,nameLast"

isAdditionalData
boolean

Set to true to merge requested fields with default response, or false/omit to return only requested fields plus ID.

Example:

true

Response

200 - application/json

A list of Persons

c_org
string
required

Represents the organization that the individual in the Person table is associated with.

city
string
required

Represents the urban area or municipality where the individual resides.

dateOfBirth
required

Records the day, month, and year when the individual was born.

email
string
required

Stores the electronic mail address of the individual.

id
number
required

Unique identifier.

isApplicant
boolean
required

Indicates whether the individual is a candidate for a position or role.

isStaff
boolean
required

Indicates whether the person is a staff member or not.

nameFirst
string
required

Contains the first name of the individual in the Person table.

nameFirstLast
string
required

Stores the full name of an individual in the format of first name followed by last name.

nameLast
string
required

Stores the surname of the individual.

OrgId
number
required

Represents the unique identifier for the organization to which the individual belongs.

phone
string
required

Stores the contact number of the individual.

RandomPoolStatusId
number | null
required

Indicates the status of a person's association with a random pool in a system, typically represented by a unique identifier.

state
string
required

Indicates the U.S. state or territory where the individual resides.

streetPrimary
string
required

Contains the main street address for an individual.

streetSecondary
string
required

Contains additional information about the person's street address such as apartment or suite number.

UserId
number | null
required

A unique identifier assigned to each individual in the Person table.

zip
string
required

Stores the postal code associated with each individual's residential address.