Get all person profiles
get
/fscmRestApi/resources/11.13.18.05/hedPersonProfiles
Request
Query Parameters
-
expand: string
When this parameter is provided, the specified children are included in the resource payload (instead of just a link). The value of this query parameter is "all" or "". More than one child can be specified using comma as a separator. Example: ?expand=Employees,Localizations. Nested children can also be provided following the format "Child.NestedChild" (Example: ?expand=Employees.Managers). If a nested child is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers" (which will expand Employees and Managers).
-
fields: string
This parameter filters the resource fields. Only the specified fields are returned, which means that if no fields are specified, no fields are returned (useful to get only the links). If an indirect child resource is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?fields=Employees.Managers:Empname" is the same as "?fields=;Employees:;Employees.Managers:Empname" (which will only return the "Empname" field for Managers). the value of this query parameter is a list of resource fields. The attribute can be a direct (Example: Employees) or indirect (Example: Employees.Managers) child. It cannot be combined with expand query parameter. If both are provided, only fields will be considered.
Format: ?fields=Attribute1,Attribute2
Format for fields in child resource: ?fields=Accessor1:Attribute1,Attribute2 -
finder: string
Used as a predefined finder to search the collection.
Format ?finder=<finderName>;<variableName>=<variableValue>,<variableName2>=<variableValue2>
The following are the available finder names and corresponding finder variables- AdvancedSearchFinder Finds all person profiles that match the specified finder variables.
Finder Variables- DateOfBirth_EQUAL_TO; string; Date value to find person profiles whose date of birth is equal to this value.
- DateOfBirth_GREATER_OR_EQUALS; string; Date value to find person profiles whose date of birth is greater or equal to this value.
- DateOfBirth_GREATER_THAN; string; Date value to find person profiles whose date of birth is greater than this value.
- DateOfBirth_LESS_OR_EQUALS; string; Date value to find person profiles whose date of birth is less or equal to this value.
- DateOfBirth_LESS_THAN; string; Date value to find person profiles whose date of birth is less than this value.
- DateOfBirth_NOT_EQUAL; string; Date value to find person profiles whose date of birth isn't equal to this value.
- Keyword; string; Keyword; string; to search from Name, Email ID, Party ID, User Name, and Constituent ID.
- ResidencyCode_EQUAL_TO; string; String value to find person profiles with at least one residency code matching this value.
- ResidencyCode_NOT_EQUAL; string; String value to find person profiles with no residency code matching this value.
- TagCodeEight_EQUAL_TO; string; String value to find person profiles with one assigned tag code matching this value.
- TagCodeEight_NOT_EQUAL; string; String value to find person profiles with no assigned tag code matching this value.
- TagCodeFive_EQUAL_TO; string; String value to find person profiles with one assigned tag code matching this value.
- TagCodeFive_NOT_EQUAL; string; String value to find person profiles with no assigned tag code matching this value.
- TagCodeFour_EQUAL_TO; string; String value to find person profiles with one assigned tag code matching this value.
- TagCodeFour_NOT_EQUAL; string; String value to find person profiles with no assigned tag code matching this value.
- TagCodeNine_EQUAL_TO; string; String value to find person profiles with one assigned tag code matching this value.
- TagCodeNine_NOT_EQUAL; string; String value to find person profiles with no assigned tag code matching this value.
- TagCodeOne_EQUAL_TO; string; String value to find person profiles with one assigned tag code matching this value.
- TagCodeOne_NOT_EQUAL; string; String value to find person profiles with no assigned tag code matching this value.
- TagCodeSeven_EQUAL_TO; string; String value to find person profiles with one assigned tag code matching this value.
- TagCodeSeven_NOT_EQUAL; string; String value to find person profiles with no assigned tag code matching this value.
- TagCodeSix_EQUAL_TO; string; String value to find person profiles with one assigned tag code matching this value.
- TagCodeSix_NOT_EQUAL; string; String value to find person profiles with no assigned tag code matching this value.
- TagCodeTen_EQUAL_TO; string; String value to find person profiles with one assigned tag code matching this value.
- TagCodeTen_NOT_EQUAL; string; String value to find person profiles with no assigned tag code matching this value.
- TagCodeThree_EQUAL_TO; string; String value to find person profiles with one assigned tag code matching this value.
- TagCodeThree_NOT_EQUAL; string; String value to find person profiles with no assigned tag code matching this value.
- TagCodeTwo_EQUAL_TO; string; String value to find person profiles with one assigned tag code matching this value.
- TagCodeTwo_NOT_EQUAL; string; String value to find person profiles with no assigned tag code matching this value.
- ByEmailFinder Find the person profile that has the specified email address.
Finder Variables- EmailAddress; string; Email address to search for the person profile.
- ByIntentFinder Finds all person profiles for a particular intent.
Finder Variables- Intent; string; Intent; string; is a value that represents how the returned records are used. For example, if the intent value is HEY_CREATE_ADMISSIONS_APPLICATION_DATA, that means the server understands that it should only return person profiles for which the user can create admissions applications. If no intent is passed, the server will assume that the intent is to only view person profiles.
- ByKeywordFinder Finds all person profiles that match the Name, Email ID, Party ID, User Name, and Constituent ID.
Finder Variables- Keyword; string; Keyword; string; to search from Name, Email ID, Party ID, User Name, and Constituent ID.
- ByPartyIdFinder Finds the person profile that matches the Party ID.
Finder Variables- PartyId; integer; Unique identifier for party. Party can be a person in Oracle Trading Community Architecture. For example, a student can be a party.
- PrimaryKey Finds the person profile that matches the Party ID, Person Profile ID, and Citizenship ID.
Finder Variables- PartyId; integer; Unique identifier for party. Party can be a person in Oracle Trading Community Architecture. For example, a student can be a party.
- AdvancedSearchFinder Finds all person profiles that match the specified finder variables.
-
limit: integer
This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.
-
links: string
This parameter can be used to show only certain links while accessing a singular resource or a resource collection. The parameter value format is a comma-separated list of : <link_relation>
Example:
self,canonical -
offset: integer
Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.
-
onlyData: boolean
The resource item payload will be filtered in order to contain only data (no links section, for example).
-
orderBy: string
This parameter orders a resource collection based on the specified fields. The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and "asc" or "desc". Specify "asc" for ascending and "desc" for descending. The default value is "asc". For example, ?orderBy=field1:asc,field2:desc
-
q: string
This query parameter defines the where clause. The resource collection will be queried using the provided expressions. The value of this query parameter is one or more expressions. Example: ?q=Deptno>=10 and <= 30;Loc!=NY
Format: ?q=expression1;expression2
You can use these queryable attributes to filter this collection resource using the q query parameter:- BirthCountryCode; string; The country where this person was born.
- BirthCountryName; string; The name of the birth country code.
- CitizenshipStatusCode; string; The primary citizenship status, for example, Citizen, Permanent Resident, and Noncitizen. A list of accepted values is defined in the lookup type ORA_HEY_CITIZENSHIP_STATUS.
- CitizenshipStatusDate; string; The date from which the citizenship status was valid.
- CitizenshipStatusMeaning; string; The meaning of the citizenship status. A list of accepted values is defined in the lookup type ORA_HEY_CITIZENSHIP_STATUS.
- ConstituentId; string; The unique identifier for a constituent.
- CriminalHistoryExplanation; string; The description of any criminal history.
- CriminalHistoryFlag; boolean; Indicates whether criminal history exists for the person.
- DateOfBirth; string; The date when the person was born.
- DateOfDeath; string; The date when the person died.
- DeathCertificateNumber; string; The death certificate number of the person.
- DeceasedFlag; boolean; Indicates if the person is deceased.
- EthnicityCode; string; The unique code for ethnicity. A list of accepted values is defined in the lookup type ORA_HEY_DECLARED_ETHNICITY.
- EthnicityMeaning; string; The meaning of ethnicity for a person. A list of accepted values is defined in the lookup type ORA_HEY_DECLARED_ETHNICITY.
- EthnicityValue; string; The value of ethnicity for a person.
- FirstName; string; The first name of the person.
- FullName; string; The full name of the person.
- GenderCode; string; The gender of the person, such as male, female, or unknown. A list of accepted values is defined in the lookup type HZ_GENDER.
- GenderExpressionCode; string; The unique code for gender expression. A list of accepted values is defined in the lookup type ORA_HEY_GENDER_EXPRESSION.
- GenderExpressionMeaning; string; The gender expression that defines how user shows their gender. A list of accepted values is defined in the lookup type ORA_HEY_GENDER_EXPRESSION.
- GenderExpressionValue; string; The value of gender expression for a person.
- GenderIdentityCode; string; The gender identity of the person. A list of accepted values is defined in the lookup type ORA_HEY_GENDER_IDENTITY.
- GenderIdentityMeaning; string; The meaning of gender identity. A list of accepted values is defined in the lookup type ORA_HEY_GENDER_IDENTITY.
- GenderIdentityValue; string; The gender identity value of the person, to capture the free text value when the GENDER_IDENTITY_CODE is Not Listed.
- GenderMeaning; string; The meaning of the gender code. A list of accepted values is defined in the lookup type HZ_GENDER.
- HispanicOrLatinoCode; string; The hispanic or latino code of the student, if any. A list of accepted values is defined in the lookup type ORA_HEY_ETHNICITY.
- HispanicOrLatinoMeaning; string; The meaning of the hispanic or latino code. A list of accepted values is defined in the lookup type ORA_HEY_ETHNICITY.
- LastName; string; The last name of the person.
- MaritalStatusCode; string; The marital status of the person. A list of accepted values is defined in the lookup type MARITAL_STATUS.
- MaritalStatusEffectiveDate; string; The date when the person's marital status changed.
- MaritalStatusMeaning; string; The meaning of the marital status code. A list of accepted values is defined in the lookup type MARITAL_STATUS.
- PartyId; integer; The unique identifier for the party. Party can be a person. For example, a student can be a party.
- PlaceOfBirth; string; The place of birth of the student.
- PlaceOfDeath; string; The place of death of the person.
- PreferredFirstName; string; The preferred first name of the person.
- PreferredFullName; string; The preferred full name of the person.
- PreferredLastName; string; The preferred last name of the person.
- PreferredMiddleName; string; The preferred middle name of the person.
- PreferredPronounsCode; string; The preferred pronouns of the person. A list of accepted values is defined in the lookup type ORA_HEY_PREFERRED_PRONOUN.
- PreferredPronounsMeaning; string; The meaning of preferred pronouns. A list of accepted values is defined in the lookup type ORA_HEY_PREFERRED_PRONOUN.
- PreferredPronounsValue; string; The preferred pronouns value of the person, to capture the free text value when the PREFERRED_PRONOUNS_CODE is Not Listed.
- PreferredTitle; string; The preferred title of the person, such as Mr or Mrs.
- PrimaryEmailAddress; string; The primary email address of the person.
- PrimaryLanguageCode; string; The primary language of the person. A list of accepted values is defined in the lookup type ORA_HEY_PRIMARY_LANGUAGE.
- PrimaryLanguageMeaning; string; The meaning of primary language. A list of accepted values is defined in the lookup type ORA_HEY_PRIMARY_LANGUAGE.
- PrimaryLanguageValue; string; The primary language value of the person, to capture the free text value when the PRIMARY_LANGUAGE_CODE is Not Listed.
- PrimaryPhoneAreaCode; string; The country area code for the primary phone number of the person.
- PrimaryPhoneCountryCode; string; The international country code for the primary phone number of the person.
- PrimaryPhoneExtension; string; The extension number for the primary phone number of the person.
- PrimaryPhoneNumber; string; The primary phone number of the person.
- PrivacyFlag; boolean; Indicates whether privacy restrictions are activated for this person. The default value is: true.
- ResidenceCountryCode; string; The country this person normally resides in.
- ResidenceCountryName; string; The name of the residency country code.
- SchoolDisciplineExplanation; string; The description of any disciplinary action at another academic institution.
- SchoolDisciplineFlag; boolean; Indicates whether the person has received disciplinary action at another academic institution.
- Title; string; The title of the person, such as Mr or Mrs.
- UserName; string; The user name of the person.
- VisaTypeCode; string; The visa type of the person. A list of accepted values is defined in the lookup type ORA_HEY_VISA_TYPE.
- VisaTypeMeaning; string; The meaning of visa type. A list of accepted values is defined in the lookup type ORA_HEY_VISA_TYPE.
-
totalResults: boolean
The resource collection representation will include the "estimated row count" when "?totalResults=true", otherwise the count is not included. The default value is "false".
Header Parameters
-
Metadata-Context:
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version:
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/json
Default Response
The following table describes the default response for this task.
Headers
-
Metadata-Context:
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version:
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Root Schema : hedPersonProfiles
Type:
Show Source
object-
count(required): integer
The number of resource instances returned in the current range.
-
hasMore(required): boolean
Indicates whether more resources are available on the server than the subset returned in the response. If the value is true, then there are more resources to retrieve from the server. The default value is false.
-
items: array
Items
Title:
ItemsThe items in the collection. -
limit(required): integer
The actual paging size used by the server.
-
links(required): array
Links
Title:
LinksThe link relations associated with the resource instance. -
offset(required): integer
The offset value used in the current page.
-
totalResults: integer
The estimated row count when "?totalResults=true", otherwise the count is not included.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : hedPersonProfiles-item-response
Type:
Show Source
object-
addresses: array
Addresses
Title:
AddressesThe addresses resource provides information about the various addresses associated with the user. -
BirthCountryCode: string
Title:
Country of BirthMaximum Length:30The country where this person was born. -
BirthCountryName: string
Title:
Country of BirthRead Only:trueMaximum Length:80The name of the birth country code. -
citizenships: array
Citizenships
Title:
CitizenshipsCitizenships represent one or more countries in which the user is a citizen. For example, the user could be a citizen of the United States of America. -
CitizenshipStatusCode: string
Title:
Citizenship StatusMaximum Length:30The primary citizenship status, for example, Citizen, Permanent Resident, and Noncitizen. A list of accepted values is defined in the lookup type ORA_HEY_CITIZENSHIP_STATUS. -
CitizenshipStatusDate: string
(date)
Title:
Citizenship Status DateThe date from which the citizenship status was valid. -
CitizenshipStatusMeaning: string
Title:
Citizenship StatusRead Only:trueMaximum Length:80The meaning of the citizenship status. A list of accepted values is defined in the lookup type ORA_HEY_CITIZENSHIP_STATUS. -
ConstituentId: string
Title:
Constituent IDRead Only:trueMaximum Length:30The unique identifier for a constituent. -
CriminalHistoryExplanation: string
Title:
Criminal History ExplanationMaximum Length:1000The description of any criminal history. -
CriminalHistoryFlag: boolean
Title:
Criminal History IndicatorMaximum Length:1Indicates whether criminal history exists for the person. -
DateOfBirth: string
(date)
Title:
Date of BirthThe date when the person was born. -
DateOfDeath: string
(date)
Title:
Date of DeathThe date when the person died. -
DeathCertificateNumber: string
Title:
Death Certificate NumberMaximum Length:100The death certificate number of the person. -
DeceasedFlag: boolean
Title:
Person DeceasedMaximum Length:1Indicates if the person is deceased. -
emails: array
Emails
Title:
EmailsThe emails resource provides information about the various email addresses associated with the user. -
emergencyContacts: array
Emergency Contacts
Title:
Emergency ContactsThe emergency contacts resource provides information about the various emergency contacts provided by the user. -
EthnicityCode: string
Title:
EthnicityMaximum Length:30The unique code for ethnicity. A list of accepted values is defined in the lookup type ORA_HEY_DECLARED_ETHNICITY. -
EthnicityMeaning: string
Title:
EthnicityRead Only:trueMaximum Length:80The meaning of ethnicity for a person. A list of accepted values is defined in the lookup type ORA_HEY_DECLARED_ETHNICITY. -
EthnicityValue: string
Title:
Ethnicity ValueMaximum Length:100The value of ethnicity for a person. -
FirstName: string
Title:
First NameRead Only:trueMaximum Length:150The first name of the person. -
FullName: string
Title:
NameRead Only:trueMaximum Length:360The full name of the person. -
GenderCode: string
Title:
GenderMaximum Length:30The gender of the person, such as male, female, or unknown. A list of accepted values is defined in the lookup type HZ_GENDER. -
GenderExpressionCode: string
Title:
Gender ExpressionMaximum Length:30The unique code for gender expression. A list of accepted values is defined in the lookup type ORA_HEY_GENDER_EXPRESSION. -
GenderExpressionMeaning: string
Title:
Gender ExpressionRead Only:trueMaximum Length:80The gender expression that defines how user shows their gender. A list of accepted values is defined in the lookup type ORA_HEY_GENDER_EXPRESSION. -
GenderExpressionValue: string
Title:
Gender Expression ValueMaximum Length:100The value of gender expression for a person. -
GenderIdentityCode: string
Title:
Gender IdentityMaximum Length:30The gender identity of the person. A list of accepted values is defined in the lookup type ORA_HEY_GENDER_IDENTITY. -
GenderIdentityMeaning: string
Title:
Gender IdentityRead Only:trueMaximum Length:80The meaning of gender identity. A list of accepted values is defined in the lookup type ORA_HEY_GENDER_IDENTITY. -
GenderIdentityValue: string
Title:
Gender Identity ValueMaximum Length:100The gender identity value of the person, to capture the free text value when the GENDER_IDENTITY_CODE is Not Listed. -
GenderMeaning: string
Title:
GenderRead Only:trueMaximum Length:80The meaning of the gender code. A list of accepted values is defined in the lookup type HZ_GENDER. -
HispanicOrLatinoCode: string
Title:
Hispanic or LatinoMaximum Length:60The hispanic or latino code of the student, if any. A list of accepted values is defined in the lookup type ORA_HEY_ETHNICITY. -
HispanicOrLatinoMeaning: string
Title:
Hispanic or LatinoRead Only:trueMaximum Length:80The meaning of the hispanic or latino code. A list of accepted values is defined in the lookup type ORA_HEY_ETHNICITY. -
images: array
Images
Title:
ImagesThe images resource provides information about the image uploaded by the user. -
LastName: string
Title:
Last NameRead Only:trueMaximum Length:150The last name of the person. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
MaritalStatusCode: string
Title:
Marital StatusMaximum Length:30The marital status of the person. A list of accepted values is defined in the lookup type MARITAL_STATUS. -
MaritalStatusEffectiveDate: string
(date)
Title:
Marital Status as OfThe date when the person's marital status changed. -
MaritalStatusMeaning: string
Title:
Marital StatusRead Only:trueMaximum Length:80The meaning of the marital status code. A list of accepted values is defined in the lookup type MARITAL_STATUS. -
MiddleName: string
Title:
Middle NameRead Only:trueMaximum Length:60The middle name of the person. -
missingPersonContacts: array
Missing Person Contacts
Title:
Missing Person ContactsMissing person contacts represent the contacts that are notified when a person is missing. For example, spouse and parent of a student. -
names: array
Names
Title:
NamesThe names resource provides information about the various names associated with the user. -
NameSuffix: string
Title:
SuffixRead Only:trueMaximum Length:30The name suffix of the person. -
nationalIdentifiers: array
National Identifiers
Title:
National IdentifiersThe national identifiers resource provides information about the various national identifiers associated with the user. -
PartyId: integer
(int64)
Title:
Party IDRead Only:trueThe unique identifier for the party. Party can be a person. For example, a student can be a party. -
phones: array
Phones
Title:
PhonesThe phones resource provides information about the various phone numbers associated with the user. -
PlaceOfBirth: string
Title:
Place of BirthMaximum Length:60The place of birth of the student. -
PlaceOfDeath: string
Title:
Place of DeathMaximum Length:100The place of death of the person. -
PreferredFirstName: string
Title:
First NameRead Only:trueMaximum Length:150The preferred first name of the person. -
PreferredFullName: string
Title:
Full NameRead Only:trueMaximum Length:360The preferred full name of the person. -
PreferredLastName: string
Title:
Last NameRead Only:trueMaximum Length:150The preferred last name of the person. -
PreferredMiddleName: string
Title:
Middle NameRead Only:trueMaximum Length:60The preferred middle name of the person. -
PreferredNameSuffix: string
Title:
Name SuffixRead Only:trueMaximum Length:30The preferred name suffix of the person. -
PreferredPronounsCode: string
Title:
Preferred PronounsMaximum Length:30The preferred pronouns of the person. A list of accepted values is defined in the lookup type ORA_HEY_PREFERRED_PRONOUN. -
PreferredPronounsMeaning: string
Title:
Preferred PronounsRead Only:trueMaximum Length:80The meaning of preferred pronouns. A list of accepted values is defined in the lookup type ORA_HEY_PREFERRED_PRONOUN. -
PreferredPronounsValue: string
Title:
Preferred Pronouns ValueMaximum Length:100The preferred pronouns value of the person, to capture the free text value when the PREFERRED_PRONOUNS_CODE is Not Listed. -
PreferredTitle: string
Title:
TitleRead Only:trueMaximum Length:60The preferred title of the person, such as Mr or Mrs. -
PrimaryEmailAddress: string
Title:
Primary EmailRead Only:trueMaximum Length:320The primary email address of the person. -
PrimaryLanguageCode: string
Title:
Primary LanguageMaximum Length:30The primary language of the person. A list of accepted values is defined in the lookup type ORA_HEY_PRIMARY_LANGUAGE. -
PrimaryLanguageMeaning: string
Title:
Primary LanguageRead Only:trueMaximum Length:80The meaning of primary language. A list of accepted values is defined in the lookup type ORA_HEY_PRIMARY_LANGUAGE. -
PrimaryLanguageValue: string
Title:
Primary Language ValueMaximum Length:100The primary language value of the person, to capture the free text value when the PRIMARY_LANGUAGE_CODE is Not Listed. -
PrimaryPhoneAreaCode: string
Title:
Phone Area CodeRead Only:trueMaximum Length:20The country area code for the primary phone number of the person. -
PrimaryPhoneCountryCode: string
Title:
Phone Country CodeRead Only:trueMaximum Length:10The international country code for the primary phone number of the person. -
PrimaryPhoneExtension: string
Title:
Phone ExtensionRead Only:trueMaximum Length:20The extension number for the primary phone number of the person. -
PrimaryPhoneNumber: string
Title:
Phone NumberRead Only:trueMaximum Length:40The primary phone number of the person. -
PrivacyFlag: boolean
Title:
Privacy IndicatorMaximum Length:1Indicates whether privacy restrictions are activated for this person. The default value is: true. -
races: array
Races
Title:
RacesThe races resource provides information about the various races associated with the user. -
ResidenceCountryCode: string
Title:
Country of ResidenceMaximum Length:30The country this person normally resides in. -
ResidenceCountryName: string
Title:
Country of ResidenceRead Only:trueMaximum Length:80The name of the residency country code. -
SchoolDisciplineExplanation: string
Title:
School Discipline ExplanationMaximum Length:1000The description of any disciplinary action at another academic institution. -
SchoolDisciplineFlag: boolean
Title:
School Discipline IndicatorMaximum Length:1Indicates whether the person has received disciplinary action at another academic institution. -
socialNetworks: array
Social Networks
Title:
Social NetworksThe social networks resource provides information about the various networks associated with the user. -
Title: string
Title:
TitleRead Only:trueMaximum Length:60The title of the person, such as Mr or Mrs. -
UserName: string
Title:
User NameRead Only:trueMaximum Length:100The user name of the person. -
VisaTypeCode: string
Title:
Visa TypeMaximum Length:30The visa type of the person. A list of accepted values is defined in the lookup type ORA_HEY_VISA_TYPE. -
VisaTypeMeaning: string
Title:
Visa TypeRead Only:trueMaximum Length:80The meaning of visa type. A list of accepted values is defined in the lookup type ORA_HEY_VISA_TYPE.
Nested Schema : Addresses
Type:
arrayTitle:
AddressesThe addresses resource provides information about the various addresses associated with the user.
Show Source
Nested Schema : Citizenships
Type:
arrayTitle:
CitizenshipsCitizenships represent one or more countries in which the user is a citizen. For example, the user could be a citizen of the United States of America.
Show Source
Nested Schema : Emails
Type:
arrayTitle:
EmailsThe emails resource provides information about the various email addresses associated with the user.
Show Source
Nested Schema : Emergency Contacts
Type:
arrayTitle:
Emergency ContactsThe emergency contacts resource provides information about the various emergency contacts provided by the user.
Show Source
Nested Schema : Images
Type:
arrayTitle:
ImagesThe images resource provides information about the image uploaded by the user.
Show Source
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : Missing Person Contacts
Type:
arrayTitle:
Missing Person ContactsMissing person contacts represent the contacts that are notified when a person is missing. For example, spouse and parent of a student.
Show Source
Nested Schema : Names
Type:
arrayTitle:
NamesThe names resource provides information about the various names associated with the user.
Show Source
Nested Schema : National Identifiers
Type:
arrayTitle:
National IdentifiersThe national identifiers resource provides information about the various national identifiers associated with the user.
Show Source
Nested Schema : Phones
Type:
arrayTitle:
PhonesThe phones resource provides information about the various phone numbers associated with the user.
Show Source
Nested Schema : Races
Type:
arrayTitle:
RacesThe races resource provides information about the various races associated with the user.
Show Source
Nested Schema : hedPersonProfiles-addresses-item-response
Type:
Show Source
object-
AddrElementAttributeFive: string
Title:
Additional Address Element 5Maximum Length:150The additional address element to support flexible address format. -
AddrElementAttributeFour: string
Title:
Additional Address Element 4Maximum Length:150The additional address element to support flexible address format. -
AddrElementAttributeOne: string
Title:
Additional Address Element 1Maximum Length:150The additional address element to support flexible address format. -
AddrElementAttributeThree: string
Title:
Additional Address Element 3Maximum Length:150The additional address element to support flexible address format. -
AddrElementAttributeTwo: string
Title:
Additional Address Element 2Maximum Length:150The additional address element to support flexible address format. -
AddressFour: string
Title:
Address Line 4Maximum Length:240The fourth line for address. -
AddressLinesPhonetic: string
Title:
Address Lines PhoneticMaximum Length:560The phonetic or Kana representation of the Kanji address line. Used in Japan. -
AddressOne: string
Title:
Address Line 1Maximum Length:240The first line for address. -
AddressThree: string
Title:
Address Line 3Maximum Length:240The third line for address. -
AddressTwo: string
Title:
Address Line 2Maximum Length:240The second line for address. -
AddressUseId: integer
(int64)
Title:
Address Use IDRead Only:trueThe unique identifier for party usage. -
AddressUseTypeCode: string
Title:
Address Use TypeThe type of address usage, such as home or legal. A list of accepted values is defined in the lookup type PARTY_SITE_USE_CODE. -
AddressUseTypeMeaning: string
Title:
Address Use TypeRead Only:trueMaximum Length:80The meaning of the address usage type code. A list of accepted values is defined in the lookup type PARTY_SITE_USE_CODE. -
Building: string
Title:
BuildingMaximum Length:240The building name or number at a given address. -
City: string
Title:
CityMaximum Length:60The city for the address. -
CountryCode: string
Title:
Country CodeMaximum Length:2The country code from the TERRITORY_CODE column in the FND_TERRITORY table. -
County: string
Title:
CountyMaximum Length:60The county for the address. -
EndDate: string
(date)
Title:
End DateRead Only:trueThe end date for the address row. -
FloorNumber: string
Title:
Floor NumberMaximum Length:40The floor number at a given address or in a particular building when building number is provided. -
FormattedAddress: string
Title:
AddressRead Only:trueThe address formatted based on the country code. -
FormattedMultilineAddress: string
Title:
AddressRead Only:trueThe multiline display for the formatted address. -
FutureAddressFlag: boolean
Title:
Future Address IndicatorRead Only:trueMaximum Length:1Indicates that the address is future dated. -
HouseType: string
Title:
House TypeMaximum Length:30The type of building. A list of accepted values is defined in the lookup type HZ_HOUSE_TYPE. -
HouseTypeMeaning: string
Title:
House TypeRead Only:trueMaximum Length:80The meaning of the house type code. A list of accepted values is defined in the lookup type HZ_HOUSE_TYPE. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
LocationDirections: string
Title:
Location DirectionsMaximum Length:640The directions to the location. -
LocationId: integer
(int64)
Title:
Location IDThe unique identifier for the location. -
PartyAddressId: integer
(int64)
Title:
Party Address IDRead Only:trueThe unique identifier for party address. -
Position: string
Title:
PositionMaximum Length:50The primary direction such as North or East that's used to access the location. -
PostalCode: string
Title:
Postal CodeMaximum Length:60The postal code for the address. -
PostalPlusFourCode: string
Title:
Postal Code ExtensionMaximum Length:20The four digit extension to the United States postal code. -
PreferredFlag: boolean
Title:
PreferredMaximum Length:1Default Value:falseIndicates the preferred address. The default value is: false. -
Province: string
Title:
Province CodeMaximum Length:60The province for the address. -
StartDate: string
(date)
Title:
Start DateThe start date for the address row. -
StateCode: string
Title:
State CodeMaximum Length:60The state for the address.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : link
Type:
Show Source
object-
href: string
Title:
hyperlink referenceThe URI to the related resource. -
kind: string
Title:
kindAllowed Values:[ "collection", "item", "describe", "other" ]The kind of the related resource. -
name: string
Title:
nameThe name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relationAllowed Values:[ "self", "lov", "parent", "canonical", "child", "enclosure", "action", "custom" ]The name of the relation to the resource instance. Example: self.
Nested Schema : properties
Type:
Show Source
object-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Nested Schema : hedPersonProfiles-citizenships-item-response
Type:
Show Source
object-
CitizenshipCountryCode: string
Title:
Citizenship Country CodeMaximum Length:2The code for the country from which a person claims citizenship. -
CitizenshipCountryName: string
Title:
Citizenship Country NameRead Only:trueMaximum Length:80The name of the citizenship country code. -
CitizenshipId: integer
(int64)
Title:
Citizenship IDRead Only:trueThe unique identifier for the citizenship. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : hedPersonProfiles-emails-item-response
Type:
Show Source
object-
EmailAddress: string
Title:
EmailMaximum Length:320The email address of the person. -
EmailId: integer
(int64)
Title:
Email IDRead Only:trueThe unique identifier for an email address. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
PreferredFlag: boolean
Title:
PreferredMaximum Length:1Default Value:falseIndicates the preferred email address. -
PurposeCode: string
Title:
PurposeMaximum Length:30The type of purpose for email contact, such as work, emergency, and home. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
PurposeMeaning: string
Title:
PurposeRead Only:trueMaximum Length:80The meaning of the purpose code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : hedPersonProfiles-emergencyContacts-item-response
Type:
Show Source
object-
AdditionalEmail: string
Title:
Additional EmailMaximum Length:1000The additional email for an emergency contact. -
AdditionalEmailTypeCode: string
Title:
Additional Email Type CodeMaximum Length:30The additional email type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
AdditionalEmailTypeMeaning: string
Title:
Additional Email Type NameRead Only:trueMaximum Length:80The meaning of the additional email type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
AdditionalPhoneAreaCode: string
Title:
Additional Phone Area CodeMaximum Length:10The area code for additional phone of an emergency contact. -
AdditionalPhoneCountryCode: string
Title:
Additional Phone Country CodeMaximum Length:10The country code for additional phone of an emergency contact. -
AdditionalPhoneExtension: string
Title:
Additional Phone ExtensionMaximum Length:10The extension for additional phone of an emergency contact. -
AdditionalPhoneNumber: string
Title:
Additional Phone NumberMaximum Length:40The additional phone number for an emergency contact. -
AdditionalPhoneTypeCode: string
Title:
Additional Phone Type CodeMaximum Length:30The additional phone type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
AdditionalPhoneTypeMeaning: string
Title:
Additional Phone Type NameRead Only:trueMaximum Length:80The meaning of the additional phone type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
ContactTypeCode: string
Title:
Contact Type CodeMaximum Length:30The emergency contact type of the person. A list of accepted values is defined in the lookup type ORA_HEY_EMERGENCY_CONTACT_TYPE. -
ContactTypeMeaning: string
Title:
Relationship TypeRead Only:trueMaximum Length:80The meaning of emergency contact type. A list of accepted values is defined in the lookup type ORA_HEY_EMERGENCY_CONTACT_TYPE. -
Email: string
Title:
EmailMaximum Length:1000The email address of the emergency contact. -
EmailTypeCode: string
Title:
Email Type CodeMaximum Length:30The email type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
EmailTypeMeaning: string
Title:
Email Type NameRead Only:trueMaximum Length:80The meaning of the email type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
EmergencyContactId: integer
(int64)
Title:
Emergency Contact IDRead Only:trueThe unique identifier for emergency contact. -
FirstName: string
Title:
First NameMaximum Length:150The first name by which emergency contact is known. -
LastName: string
Title:
Last NameMaximum Length:150The last name by which emergency contact is known. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
MiddleName: string
Title:
Middle NameMaximum Length:60The middle name of the person. -
NameSuffix: string
Title:
Name SuffixMaximum Length:30The suffix can be junior or senior. -
PhoneAreaCode: string
Title:
Area CodeMaximum Length:10The country area code for the emergency contact phone number. -
PhoneCountryCode: string
Title:
Select CountryMaximum Length:10The international country code for the emergency contact phone number. -
PhoneExtension: string
Title:
ExtensionMaximum Length:10The extension number for the emergency contact phone number. -
PhoneNumber: string
Title:
PhoneMaximum Length:40The emergency contact phone number. -
PhoneTypeCode: string
Title:
Phone Type CodeMaximum Length:30The phone type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
PhoneTypeMeaning: string
Title:
Phone Type NameRead Only:trueMaximum Length:80The meaning of the phone type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
PreferredFlag: boolean
Title:
PreferredMaximum Length:1Default Value:falseIndicates the preferred emergency contact. -
SingleNameFlag: boolean
Title:
Only One NameMaximum Length:1Default Value:falseIndicates if the person has single name. -
Title: string
Title:
TitleMaximum Length:60The title of the person, such as Mr or Mrs.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : hedPersonProfiles-images-item-response
Type:
Show Source
object-
ImageContent: string
(byte)
Title:
Attachment ContentThe binary representation of the attachment. -
ImageId: integer
(int64)
Title:
Attachment IDRead Only:trueThe unique identifier for image. -
ImageName: string
Maximum Length:
240The name of the image. -
ImageTypeCode: string
Title:
Attachment Type CodeRead Only:trueMaximum Length:30Default Value:PROFILE_PHOTOThe type code of the attachment, for example, STUDENT_PHOTO and INSTRUCTOR_PHOTO. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : hedPersonProfiles-missingPersonContacts-item-response
Type:
Show Source
object-
AdditionalEmail: string
Title:
Additional EmailMaximum Length:1000The additional email for a missing person contact. -
AdditionalEmailTypeCode: string
Title:
Additional Email Type CodeMaximum Length:30The additional email type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
AdditionalEmailTypeMeaning: string
Title:
Additional Email Type NameRead Only:trueMaximum Length:80The meaning of the additional email type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
AdditionalPhoneAreaCode: string
Title:
Additional Phone Area CodeMaximum Length:10The area code for additional phone of a missing person contact. -
AdditionalPhoneCountryCode: string
Title:
Additional Phone Country CodeMaximum Length:10The country code for additional phone of a missing person contact. -
AdditionalPhoneExtension: string
Title:
Additional Phone ExtensionMaximum Length:10The extension for additional phone of a missing person contact. -
AdditionalPhoneNumber: string
Title:
Additional Phone NumberMaximum Length:40The additional phone number for a missing person contact. -
AdditionalPhoneTypeCode: string
Title:
Additional Phone Type CodeMaximum Length:30The additional phone type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
AdditionalPhoneTypeMeaning: string
Title:
Additional Phone Type NameRead Only:trueMaximum Length:80The meaning of the additional phone type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
ContactTypeCode: string
Title:
Relationship TypeMaximum Length:30The missing person contact type of the person, such as Spouse, Parent, and Grandparent. A list of accepted values is defined in the lookup type ORA_HEY_EMERGENCY_CONTACT_TYPE. -
ContactTypeMeaning: string
Title:
Relationship TypeRead Only:trueMaximum Length:80The meaning of missing person contact type. A list of accepted values is defined in the lookup type ORA_HEY_EMERGENCY_CONTACT_TYPE. -
Email: string
Title:
EmailMaximum Length:1000The email for a missing person contact. -
EmailTypeCode: string
Title:
Email Type CodeMaximum Length:30The email type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
EmailTypeMeaning: string
Title:
Email Type NameRead Only:trueMaximum Length:80The meaning of the email type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
FirstName: string
Title:
First NameMaximum Length:150The first name of a person. -
LastName: string
Title:
Last NameMaximum Length:150The last name of a person. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
MiddleName: string
Title:
Middle NameMaximum Length:60The middle name of the person. -
MissingPersonContactId: integer
(int64)
Title:
Missing Person Contact IDRead Only:trueThe unique identifier of a missing person contact. -
NameSuffix: string
Title:
Name SuffixMaximum Length:30The suffix can be junior or senior. -
PhoneAreaCode: string
Title:
Area CodeMaximum Length:10The area code within a country code. -
PhoneCountryCode: string
Title:
Phone Country CodeMaximum Length:10The country code for phone of a missing person contact. -
PhoneExtension: string
Title:
Phone ExtensionMaximum Length:10The extension number for a phone number. -
PhoneNumber: string
Title:
Phone NumberMaximum Length:40The phone number formatted in the local format. The number should not include area code, country code, or extension. -
PhoneTypeCode: string
Title:
Phone Type CodeMaximum Length:30The phone type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
PhoneTypeMeaning: string
Title:
Phone Type NameRead Only:trueMaximum Length:80The meaning of the phone type code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
PreferredFlag: boolean
Title:
PreferredMaximum Length:1Default Value:falseIndicates the preferred emergency contact. -
SingleNameFlag: boolean
Title:
Only One NameMaximum Length:1Default Value:falseIndicates if the person has single name. -
Title: string
Title:
TitleMaximum Length:60The title of the person, such as Mr or Mrs.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : hedPersonProfiles-names-item-response
Type:
Show Source
object-
FirstName: string
Title:
First NameMaximum Length:150The first name of a person. -
FullName: string
Title:
Full NameMaximum Length:360The full name of the person. -
LastName: string
Title:
Last NameMaximum Length:150The last name of a person. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
MiddleName: string
Title:
Middle NameMaximum Length:60The middle name of a person. -
NameSuffix: string
Title:
Name SuffixMaximum Length:30The suffix can be junior or senior. -
NameTypeCode: string
Title:
Name TypeMaximum Length:30The type of the name. It's a value defined by the Additional Party Name and Identifier Type entity. A list of accepted values is defined in the lookup type ORA_HEY_NAME_TYPE. -
NameTypeMeaning: string
Title:
Name TypeRead Only:trueMaximum Length:80The meaning of the name type code. A list of accepted values is defined in the lookup type ORA_HEY_NAME_TYPE. -
PartyNameId: integer
(int64)
Title:
Party Name IDRead Only:trueThe unique identifier for a name. -
PreferredFlag: boolean
Title:
PreferredIndicates the name as preferred name for this party within this name type. -
SingleNameFlag: boolean
Title:
Only One NameMaximum Length:1Default Value:falseIndicates if the person has single name. -
Title: string
Title:
TitleMaximum Length:60The title of the person, such as Mr or Mrs.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : hedPersonProfiles-nationalIdentifiers-item-response
Type:
Show Source
object-
Authority: string
Title:
AuthorityMaximum Length:100The authority who issues the person national identifier. -
CountryCode: string
Title:
Country CodeMaximum Length:30The country code for national identifier of the person. -
CountryName: string
Title:
Country NameRead Only:trueMaximum Length:80The country name for national identifier of the person. -
ExpirationDate: string
(date)
Title:
Expiration DateThe expiration date of the person national identifier. -
IdentifierTypeCode: string
Title:
Identifier Type CodeMaximum Length:30The identifier type code for national identifier of the person. -
IdentifierTypeMeaning: string
Title:
Identifier TypeRead Only:trueMaximum Length:60The meaning of identifier type code for national identifier of the person. -
IdentifierValue: string
Title:
ID NumberMaximum Length:30The identifier value of the person. -
IssueDate: string
(date)
Title:
Issue DateThe issue date of the person national identifier. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
NationalIdentifierId: integer
(int64)
Title:
National Identifier IDRead Only:trueThe unique identifier for the national identifier. -
Notes: string
Title:
NoteMaximum Length:240The additional notes for person national identifier.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : hedPersonProfiles-phones-item-response
Type:
Show Source
object-
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
PhoneAreaCode: string
Title:
Area CodeMaximum Length:20The area code within a country code. -
PhoneCountryCode: string
Title:
Country CodeMaximum Length:10The international country code for a phone number. For example, 33 for France. -
PhoneExtension: string
Title:
Phone ExtensionMaximum Length:20The extension number for a phone number. -
PhoneId: integer
(int64)
Title:
Phone IDRead Only:trueThe unique identifier for the phone number. -
PhoneLineTypeCode: string
Title:
Phone TypeMaximum Length:30Default Value:GENThe phone line type for phone contact, such as mobile and land. A list of accepted values is defined in the lookup type PHONE_LINE_TYPE. -
PhoneLineTypeMeaning: string
Title:
Phone TypeRead Only:trueMaximum Length:80The meaning of the phone line type. A list of accepted values is defined in the lookup type PHONE_LINE_TYPE. -
PhoneNumber: string
Title:
Phone NumberMaximum Length:40The phone number formatted in the local format. The number should not include area code, country code, or extension. -
PreferredFlag: boolean
Title:
PreferredMaximum Length:1Default Value:falseIndicates the preferred phone number. -
PrimaryPerPhoneTypeFlag: boolean
Title:
Primary Phone IndicatorMaximum Length:1Default Value:falseIndicates the primary phone number for a phone type. -
PurposeCode: string
Title:
PurposeMaximum Length:30The type of purpose for phone contact, such as work, emergency, and home. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE. -
PurposeMeaning: string
Title:
PurposeRead Only:trueMaximum Length:80The meaning of the purpose code. A list of accepted values is defined in the lookup type CONTACT_POINT_PURPOSE.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : hedPersonProfiles-races-item-response
Type:
Show Source
object-
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
PersonalRaceId: integer
(int64)
Title:
Personal Race IDRead Only:trueThe unique identifier of person's race. -
RaceCode: string
Title:
RaceMaximum Length:30The race of the person. A list of accepted values is defined in the lookup type ORA_HEY_RACE. -
RaceCodeMeaning: string
Title:
RaceRead Only:trueMaximum Length:80The meaning of race. A list of accepted values is defined in the lookup type ORA_HEY_RACE. -
RaceValue: string
Title:
Race ValueMaximum Length:100The race value for a person.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source