sap.successfactors.ecpersonalinformation
Module sap.successfactors.ecpersonalinformation
API
Definitions
ballerinax/sap.successfactors.ecpersonalinformation Ballerina library
Overview
SAP SuccessFactors Employee Central is a comprehensive human capital management solution that helps organizations manage their workforce effectively. It provides a unified platform for HR processes including employee data management, organizational structures, and employment lifecycle management.
The ballerinax/sap.successfactors.ecpersonalinformation package provides APIs to interact with the SAP SuccessFactors Employee Central Personal Information API.
Key Features
- Manage employee personal information including biographical data
- Access addresses, contacts, national IDs, and social accounts
- Query emergency contacts and personal details
- Support for basic and OAuth 2.0 authentication
Setup guide
-
Sign in to your SAP SuccessFactors instance as an administrator.
-
Navigate to Admin Center > Manage OAuth2 Client Applications and register a new OAuth2 client application for your integration.

-
Note down the API Key (client ID) and configure the appropriate scopes for the Employee Central APIs you intend to use.
-
Locate your Company ID and the API server hostname for your SuccessFactors region. You can find the list of API servers in the SAP SuccessFactors API documentation.
-
Use Basic Authentication (username + password) or OAuth 2.0 SAML Bearer to authenticate with the API.
Quickstart
To use the sap.successfactors.ecpersonalinformation connector in your Ballerina application, modify the .bal file as follows:
Step 1: Import the module
Import the sap.successfactors.ecpersonalinformation module.
import ballerinax/sap.successfactors.ecpersonalinformation as personalinformation;
Step 2: Instantiate a new connector
Use the hostname and credentials to initiate a client.
configurable string hostname = ?; configurable string username = ?; configurable string password = ?; personalinformation:Client personalinformationClient = check new ( { auth: { username, password } }, hostname );
Step 3: Invoke the connector operation
Now, utilize the available connector operations.
personalinformation:PerPersonWrapper result = check personalinformationClient->listPerPersons();
Step 4: Run the Ballerina application
bal run
Examples
The SAP SuccessFactors Employee Central Ballerina connectors provide practical examples illustrating usage in various scenarios. Explore these examples, covering use cases like syncing employee data and sending notifications.
-
Google Sheets to SuccessFactors - Read employee records from a Google Sheets roster and create Personal Information records in SuccessFactors.
-
SuccessFactors to Slack - Poll SuccessFactors for newly onboarded employees and send welcome notifications to a Slack channel.
Clients
sap.successfactors.ecpersonalinformation: Client
You can use these APIs to access the personal information of an employee including emergency contact information, social media accounts, email address, and non-effective-dated biographical information such as date of birth, country of birth and national identification card information.
You can find your company's API server in List of API Servers in SAP SuccessFactors.
Constructor
Gets invoked to initialize the connector.
init (ConnectionConfig config, string hostname, int port)- config ConnectionConfig - The configurations to be used when initializing the
connector
- hostname string -
- port int 443 -
listPerEmergencyContactss
function listPerEmergencyContactss(map<string|string[]> headers, *ListPerEmergencyContactssQueries queries) returns Wrapper|errorGet entities from PerEmergencyContacts
Parameters
- queries *ListPerEmergencyContactssQueries - Queries to be sent with the request
getPerEmergencyContacts
function getPerEmergencyContacts(string name, string personIdExternal, string relationship, map<string|string[]> headers, *GetPerEmergencyContactsQueries queries) returns PerEmergencyContacts|errorGet entity from PerEmergencyContacts by key
Parameters
- name string - key: name
- personIdExternal string - key: personIdExternal
- relationship string - key: relationship
- queries *GetPerEmergencyContactsQueries - Queries to be sent with the request
Return Type
- PerEmergencyContacts|error - Retrieved entity
listPerPhones
function listPerPhones(map<string|string[]> headers, *ListPerPhonesQueries queries) returns Wrapper_1|errorGet entities from PerPhone
Parameters
- queries *ListPerPhonesQueries - Queries to be sent with the request
getPerPhone
function getPerPhone(string personIdExternal, string phoneType, map<string|string[]> headers, *GetPerPhoneQueries queries) returns PerPhone|errorGet entity from PerPhone by key
Parameters
- personIdExternal string - key: personIdExternal
- phoneType string - key: phoneType
- queries *GetPerPhoneQueries - Queries to be sent with the request
listPersonKeys
function listPersonKeys(map<string|string[]> headers, *ListPersonKeysQueries queries) returns Wrapper_2|errorGet entities from PersonKey
Parameters
- queries *ListPersonKeysQueries - Queries to be sent with the request
getPersonKey
function getPersonKey(string personIdExternal, map<string|string[]> headers, *GetPersonKeyQueries queries) returns PersonKey|errorGet entity from PersonKey by key
Parameters
- personIdExternal string - key: personIdExternal
- queries *GetPersonKeyQueries - Queries to be sent with the request
listPerPersonals
function listPerPersonals(map<string|string[]> headers, *ListPerPersonalsQueries queries) returns Wrapper_3|errorGet entities from PerPersonal
Parameters
- queries *ListPerPersonalsQueries - Queries to be sent with the request
getPerPersonal
function getPerPersonal(string personIdExternal, string startDate, map<string|string[]> headers, *GetPerPersonalQueries queries) returns PerPersonal|errorGet entity from PerPersonal by key
Parameters
- personIdExternal string - key: personIdExternal
- startDate string - key: startDate
- queries *GetPerPersonalQueries - Queries to be sent with the request
Return Type
- PerPersonal|error - Retrieved entity
listPerSocialAccounts
function listPerSocialAccounts(map<string|string[]> headers, *ListPerSocialAccountsQueries queries) returns Wrapper_4|errorGet entities from PerSocialAccount
Parameters
- queries *ListPerSocialAccountsQueries - Queries to be sent with the request
getPerSocialAccount
function getPerSocialAccount(string domain, string personIdExternal, map<string|string[]> headers, *GetPerSocialAccountQueries queries) returns PerSocialAccount|errorGet entity from PerSocialAccount by key
Parameters
- domain string - key: domain
- personIdExternal string - key: personIdExternal
- queries *GetPerSocialAccountQueries - Queries to be sent with the request
Return Type
- PerSocialAccount|error - Retrieved entity
listPerPersons
function listPerPersons(map<string|string[]> headers, *ListPerPersonsQueries queries) returns Wrapper_5|errorGet entities from PerPerson
Parameters
- queries *ListPerPersonsQueries - Queries to be sent with the request
getPerPerson
function getPerPerson(string personIdExternal, map<string|string[]> headers, *GetPerPersonQueries queries) returns PerPerson|errorGet entity from PerPerson by key
Parameters
- personIdExternal string - key: personIdExternal
- queries *GetPerPersonQueries - Queries to be sent with the request
listPerPersonRelationships
function listPerPersonRelationships(map<string|string[]> headers, *ListPerPersonRelationshipsQueries queries) returns Wrapper_6|errorGet entities from PerPersonRelationship
Parameters
- queries *ListPerPersonRelationshipsQueries - Queries to be sent with the request
getPerPersonRelationship
function getPerPersonRelationship(string personIdExternal, string relatedPersonIdExternal, string startDate, map<string|string[]> headers, *GetPerPersonRelationshipQueries queries) returns PerPersonRelationship|errorGet entity from PerPersonRelationship by key
Parameters
- personIdExternal string - key: personIdExternal
- relatedPersonIdExternal string - key: relatedPersonIdExternal
- startDate string - key: startDate
- queries *GetPerPersonRelationshipQueries - Queries to be sent with the request
Return Type
- PerPersonRelationship|error - Retrieved entity
listPerEmails
function listPerEmails(map<string|string[]> headers, *ListPerEmailsQueries queries) returns Wrapper_7|errorGet entities from PerEmail
Parameters
- queries *ListPerEmailsQueries - Queries to be sent with the request
getPerEmail
function getPerEmail(string emailType, string personIdExternal, map<string|string[]> headers, *GetPerEmailQueries queries) returns PerEmail|errorGet entity from PerEmail by key
Parameters
- emailType string - key: emailType
- personIdExternal string - key: personIdExternal
- queries *GetPerEmailQueries - Queries to be sent with the request
listHrisEmergencyContactAddressDEFLTs
function listHrisEmergencyContactAddressDEFLTs(map<string|string[]> headers, *ListHrisEmergencyContactAddressDEFLTsQueries queries) returns Wrapper_8|errorGet entities from HrisEmergencyContactAddressDEFLT
Parameters
- queries *ListHrisEmergencyContactAddressDEFLTsQueries - Queries to be sent with the request
getHrisEmergencyContactAddressDEFLT
function getHrisEmergencyContactAddressDEFLT(string addressId, map<string|string[]> headers, *GetHrisEmergencyContactAddressDEFLTQueries queries) returns HrisEmergencyContactAddressDEFLT|errorGet entity from HrisEmergencyContactAddressDEFLT by key
Parameters
- addressId string - key: addressId
- queries *GetHrisEmergencyContactAddressDEFLTQueries - Queries to be sent with the request
Return Type
- HrisEmergencyContactAddressDEFLT|error - Retrieved entity
listPerNationalIds
function listPerNationalIds(map<string|string[]> headers, *ListPerNationalIdsQueries queries) returns Wrapper_9|errorGet entities from PerNationalId
Parameters
- queries *ListPerNationalIdsQueries - Queries to be sent with the request
getPerNationalId
function getPerNationalId(string cardType, string country, string personIdExternal, map<string|string[]> headers, *GetPerNationalIdQueries queries) returns PerNationalId|errorGet entity from PerNationalId by key
Parameters
- cardType string - key: cardType
- country string - key: country
- personIdExternal string - key: personIdExternal
- queries *GetPerNationalIdQueries - Queries to be sent with the request
Return Type
- PerNationalId|error - Retrieved entity
listPerNationalIdWithValidityPeriods
function listPerNationalIdWithValidityPeriods(map<string|string[]> headers, *ListPerNationalIdWithValidityPeriodsQueries queries) returns Wrapper_10|errorGet entities from PerNationalIdWithValidityPeriod
Parameters
- queries *ListPerNationalIdWithValidityPeriodsQueries - Queries to be sent with the request
Return Type
- Wrapper_10|error - Retrieved entities
getPerNationalIdWithValidityPeriod
function getPerNationalIdWithValidityPeriod(string recordId, string personIdExternal, map<string|string[]> headers, *GetPerNationalIdWithValidityPeriodQueries queries) returns PerNationalIdWithValidityPeriod|errorGet entity from PerNationalIdWithValidityPeriod by key
Parameters
- recordId string - key: recordId
- personIdExternal string - key: personIdExternal
- queries *GetPerNationalIdWithValidityPeriodQueries - Queries to be sent with the request
Return Type
- PerNationalIdWithValidityPeriod|error - Retrieved entity
listPerAddressDEFLTs
function listPerAddressDEFLTs(map<string|string[]> headers, *ListPerAddressDEFLTsQueries queries) returns Wrapper_11|errorGet entities from PerAddressDEFLT
Parameters
- queries *ListPerAddressDEFLTsQueries - Queries to be sent with the request
Return Type
- Wrapper_11|error - Retrieved entities
getPerAddressDEFLT
function getPerAddressDEFLT(string addressType, string personIdExternal, string startDate, map<string|string[]> headers, *GetPerAddressDEFLTQueries queries) returns PerAddressDEFLT|errorGet entity from PerAddressDEFLT by key
Parameters
- addressType string - key: addressType
- personIdExternal string - key: personIdExternal
- startDate string - key: startDate
- queries *GetPerAddressDEFLTQueries - Queries to be sent with the request
Return Type
- PerAddressDEFLT|error - Retrieved entity
creategenerateNextPersonID
Invoke action generateNextPersonID
listNameFormatGOs
function listNameFormatGOs(map<string|string[]> headers, *ListNameFormatGOsQueries queries) returns Wrapper_12|errorGet entities from NameFormatGO
Parameters
- queries *ListNameFormatGOsQueries - Queries to be sent with the request
Return Type
- Wrapper_12|error - Retrieved entities
getNameFormatGO
function getNameFormatGO(string externalCode, map<string|string[]> headers, *GetNameFormatGOQueries queries) returns NameFormatGO|errorGet entity from NameFormatGO by key
Parameters
- externalCode string - key: externalCode
- queries *GetNameFormatGOQueries - Queries to be sent with the request
Return Type
- NameFormatGO|error - Retrieved entity
listNameElementGOs
function listNameElementGOs(map<string|string[]> headers, *ListNameElementGOsQueries queries) returns Wrapper_13|errorGet entities from NameElementGO
Parameters
- queries *ListNameElementGOsQueries - Queries to be sent with the request
Return Type
- Wrapper_13|error - Retrieved entities
getNameElementGO
function getNameElementGO(string NameFormatGO_externalCode, string externalCode, map<string|string[]> headers, *GetNameElementGOQueries queries) returns NameElementGO|errorGet entity from NameElementGO by key
Parameters
- NameFormatGO_externalCode string - key: NameFormatGO_externalCode
- externalCode string - key: externalCode
- queries *GetNameElementGOQueries - Queries to be sent with the request
Return Type
- NameElementGO|error - Retrieved entity
listPerBiographicalInfoLocBRAs
function listPerBiographicalInfoLocBRAs(map<string|string[]> headers, *ListPerBiographicalInfoLocBRAsQueries queries) returns Wrapper_14|errorGet entities from PerBiographicalInfoLocBRA
Parameters
- queries *ListPerBiographicalInfoLocBRAsQueries - Queries to be sent with the request
Return Type
- Wrapper_14|error - Retrieved entities
getPerBiographicalInfoLocBRA
function getPerBiographicalInfoLocBRA(string country, string personIdExternal, map<string|string[]> headers, *GetPerBiographicalInfoLocBRAQueries queries) returns PerBiographicalInfoLocBRA|errorGet entity from PerBiographicalInfoLocBRA by key
Parameters
- country string - key: country
- personIdExternal string - key: personIdExternal
- queries *GetPerBiographicalInfoLocBRAQueries - Queries to be sent with the request
Return Type
- PerBiographicalInfoLocBRA|error - Retrieved entity
listPerBiographicalInfoLocCHLs
function listPerBiographicalInfoLocCHLs(map<string|string[]> headers, *ListPerBiographicalInfoLocCHLsQueries queries) returns Wrapper_15|errorGet entities from PerBiographicalInfoLocCHL
Parameters
- queries *ListPerBiographicalInfoLocCHLsQueries - Queries to be sent with the request
Return Type
- Wrapper_15|error - Retrieved entities
getPerBiographicalInfoLocCHL
function getPerBiographicalInfoLocCHL(string country, string personIdExternal, map<string|string[]> headers, *GetPerBiographicalInfoLocCHLQueries queries) returns PerBiographicalInfoLocCHL|errorGet entity from PerBiographicalInfoLocCHL by key
Parameters
- country string - key: country
- personIdExternal string - key: personIdExternal
- queries *GetPerBiographicalInfoLocCHLQueries - Queries to be sent with the request
Return Type
- PerBiographicalInfoLocCHL|error - Retrieved entity
listPerBiographicalInfoLocFRAs
function listPerBiographicalInfoLocFRAs(map<string|string[]> headers, *ListPerBiographicalInfoLocFRAsQueries queries) returns Wrapper_16|errorGet entities from PerBiographicalInfoLocFRA
Parameters
- queries *ListPerBiographicalInfoLocFRAsQueries - Queries to be sent with the request
Return Type
- Wrapper_16|error - Retrieved entities
getPerBiographicalInfoLocFRA
function getPerBiographicalInfoLocFRA(string country, string personIdExternal, map<string|string[]> headers, *GetPerBiographicalInfoLocFRAQueries queries) returns PerBiographicalInfoLocFRA|errorGet entity from PerBiographicalInfoLocFRA by key
Parameters
- country string - key: country
- personIdExternal string - key: personIdExternal
- queries *GetPerBiographicalInfoLocFRAQueries - Queries to be sent with the request
Return Type
- PerBiographicalInfoLocFRA|error - Retrieved entity
listPerBiographicalInfoLocITAs
function listPerBiographicalInfoLocITAs(map<string|string[]> headers, *ListPerBiographicalInfoLocITAsQueries queries) returns Wrapper_17|errorGet entities from PerBiographicalInfoLocITA
Parameters
- queries *ListPerBiographicalInfoLocITAsQueries - Queries to be sent with the request
Return Type
- Wrapper_17|error - Retrieved entities
getPerBiographicalInfoLocITA
function getPerBiographicalInfoLocITA(string country, string personIdExternal, map<string|string[]> headers, *GetPerBiographicalInfoLocITAQueries queries) returns PerBiographicalInfoLocITA|errorGet entity from PerBiographicalInfoLocITA by key
Parameters
- country string - key: country
- personIdExternal string - key: personIdExternal
- queries *GetPerBiographicalInfoLocITAQueries - Queries to be sent with the request
Return Type
- PerBiographicalInfoLocITA|error - Retrieved entity
listPerBiographicalInfoLocVENs
function listPerBiographicalInfoLocVENs(map<string|string[]> headers, *ListPerBiographicalInfoLocVENsQueries queries) returns Wrapper_18|errorGet entities from PerBiographicalInfoLocVEN
Parameters
- queries *ListPerBiographicalInfoLocVENsQueries - Queries to be sent with the request
Return Type
- Wrapper_18|error - Retrieved entities
getPerBiographicalInfoLocVEN
function getPerBiographicalInfoLocVEN(string country, string personIdExternal, map<string|string[]> headers, *GetPerBiographicalInfoLocVENQueries queries) returns PerBiographicalInfoLocVEN|errorGet entity from PerBiographicalInfoLocVEN by key
Parameters
- country string - key: country
- personIdExternal string - key: personIdExternal
- queries *GetPerBiographicalInfoLocVENQueries - Queries to be sent with the request
Return Type
- PerBiographicalInfoLocVEN|error - Retrieved entity
Records
sap.successfactors.ecpersonalinformation: CollectionofHrisEmergencyContactAddressDEFLT
Fields
- results? HrisEmergencyContactAddressDEFLT[] -
sap.successfactors.ecpersonalinformation: CollectionofNameElementGO
Fields
- results? NameElementGO[] -
sap.successfactors.ecpersonalinformation: CollectionofNameFormatGO
Fields
- results? NameFormatGO[] -
sap.successfactors.ecpersonalinformation: CollectionofPerAddressDEFLT
Fields
- results? PerAddressDEFLT[] -
sap.successfactors.ecpersonalinformation: CollectionofPerBiographicalInfoLocBRA
Fields
- results? PerBiographicalInfoLocBRA[] -
sap.successfactors.ecpersonalinformation: CollectionofPerBiographicalInfoLocCHL
Fields
- results? PerBiographicalInfoLocCHL[] -
sap.successfactors.ecpersonalinformation: CollectionofPerBiographicalInfoLocFRA
Fields
- results? PerBiographicalInfoLocFRA[] -
sap.successfactors.ecpersonalinformation: CollectionofPerBiographicalInfoLocITA
Fields
- results? PerBiographicalInfoLocITA[] -
sap.successfactors.ecpersonalinformation: CollectionofPerBiographicalInfoLocVEN
Fields
- results? PerBiographicalInfoLocVEN[] -
sap.successfactors.ecpersonalinformation: CollectionofPerEmail
Fields
- results? PerEmail[] -
sap.successfactors.ecpersonalinformation: CollectionofPerEmergencyContacts
Fields
- results? PerEmergencyContacts[] -
sap.successfactors.ecpersonalinformation: CollectionofPerNationalId
Fields
- results? PerNationalId[] -
sap.successfactors.ecpersonalinformation: CollectionofPerNationalIdWithValidityPeriod
Fields
- results? PerNationalIdWithValidityPeriod[] -
sap.successfactors.ecpersonalinformation: CollectionofPerPerson
Fields
- results? PerPerson[] -
sap.successfactors.ecpersonalinformation: CollectionofPerPersonal
Fields
- results? PerPersonal[] -
sap.successfactors.ecpersonalinformation: CollectionofPerPersonRelationship
Fields
- results? PerPersonRelationship[] -
sap.successfactors.ecpersonalinformation: CollectionofPerPhone
Fields
- results? PerPhone[] -
sap.successfactors.ecpersonalinformation: CollectionofPerSocialAccount
Fields
- results? PerSocialAccount[] -
sap.successfactors.ecpersonalinformation: CollectionofPersonKey
Fields
- results? PersonKey[] -
sap.successfactors.ecpersonalinformation: ConnectionConfig
Provides a set of configurations for controlling the behaviours when communicating with a remote HTTP endpoint.
Fields
- auth CredentialsConfig - Configurations related to client authentication
- httpVersion HttpVersion(default http:HTTP_2_0) - The HTTP version understood by the client
- http1Settings ClientHttp1Settings(default {}) - Configurations related to HTTP/1.x protocol
- http2Settings ClientHttp2Settings(default {}) - Configurations related to HTTP/2 protocol
- timeout decimal(default 30) - The maximum time to wait (in seconds) for a response before closing the connection
- forwarded string(default "disable") - The choice of setting
forwarded/x-forwardedheader
- followRedirects? FollowRedirects - Configurations associated with Redirection
- poolConfig? PoolConfiguration - Configurations associated with request pooling
- cache CacheConfig(default {}) - HTTP caching related configurations
- compression Compression(default http:COMPRESSION_AUTO) - Specifies the way of handling compression (
accept-encoding) header
- circuitBreaker? CircuitBreakerConfig - Configurations associated with the behaviour of the Circuit Breaker
- retryConfig? RetryConfig - Configurations associated with retrying
- cookieConfig? CookieConfig - Configurations associated with cookies
- responseLimits ResponseLimitConfigs(default {}) - Configurations associated with inbound response size limits
- secureSocket? ClientSecureSocket - SSL/TLS-related options
- proxy? ProxyConfig - Proxy server related options
- socketConfig ClientSocketConfig(default {}) - Provides settings related to client socket configuration
- validation boolean(default true) - Enables the inbound payload validation functionality which provided by the constraint package. Enabled by default
- laxDataBinding boolean(default true) - Enables relaxed data binding on the client side. When enabled,
nilvalues are treated as optional, and absent fields are handled asnilabletypes. Enabled by default.
sap.successfactors.ecpersonalinformation: GenerateNextPersonIDResponse
sap.successfactors.ecpersonalinformation: GetHrisEmergencyContactAddressDEFLTQueries
Represents the Queries record for the operation: getHrisEmergencyContactAddressDEFLT
Fields
- \$select? ("address1"|"address2"|"address3"|"address4"|"address5"|"addressId"|"addressType"|"city"|"country"|"county"|"createdBy"|"createdDateTime"|"createdOn"|"endDate"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"notes"|"province"|"startDate"|"state"|"zipCode")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetNameElementGOQueries
Represents the Queries record for the operation: getNameElementGO
Fields
- \$select? ("NameFormatGO_externalCode"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"nameArtifactEnum"|"sampleData"|"separator")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetNameFormatGOQueries
Represents the Queries record for the operation: getNameFormatGO
Fields
- \$expand? ("*"|"nameElements")[] - Expand related entities, see OData Expand
- \$select? ("createdBy"|"createdDateTime"|"externalCode"|"externalName"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemCreatedBy"|"mdfSystemCreatedDate"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemLastModifiedBy"|"mdfSystemLastModifiedDate"|"mdfSystemLastModifiedDateWithTZ"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"sample")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerAddressDEFLTQueries
Represents the Queries record for the operation: getPerAddressDEFLT
Fields
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$select? ("address1"|"address2"|"address3"|"address4"|"address5"|"addressType"|"city"|"country"|"county"|"createdBy"|"createdDateTime"|"createdOn"|"empUsersSysId"|"endDate"|"includeAllRecords"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"notes"|"operation"|"personIdExternal"|"province"|"startDate"|"state"|"zipCode")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerBiographicalInfoLocBRAQueries
Represents the Queries record for the operation: getPerBiographicalInfoLocBRA
Fields
- \$select? ("country"|"createdBy"|"createdDateTime"|"createdOn"|"customString1"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"placeOfBirth"|"regionOfBirth")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerBiographicalInfoLocCHLQueries
Represents the Queries record for the operation: getPerBiographicalInfoLocCHL
Fields
- \$select? ("country"|"createdBy"|"createdDateTime"|"createdOn"|"customString1"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"placeOfBirth"|"regionOfBirth")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerBiographicalInfoLocFRAQueries
Represents the Queries record for the operation: getPerBiographicalInfoLocFRA
Fields
- \$select? ("country"|"createdBy"|"createdDateTime"|"createdOn"|"customString1"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"placeOfBirth"|"regionOfBirth")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerBiographicalInfoLocITAQueries
Represents the Queries record for the operation: getPerBiographicalInfoLocITA
Fields
- \$select? ("country"|"createdBy"|"createdDateTime"|"createdOn"|"customString1"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"placeOfBirth"|"regionOfBirth")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerBiographicalInfoLocVENQueries
Represents the Queries record for the operation: getPerBiographicalInfoLocVEN
Fields
- \$select? ("country"|"createdBy"|"createdDateTime"|"createdOn"|"customString1"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"placeOfBirth"|"regionOfBirth")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerEmailQueries
Represents the Queries record for the operation: getPerEmail
Fields
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$select? ("createdBy"|"createdDateTime"|"createdOn"|"emailAddress"|"emailType"|"includeAllRecords"|"isPrimary"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerEmergencyContactsQueries
Represents the Queries record for the operation: getPerEmergencyContacts
Fields
- \$expand? ("*"|"addressNavDEFLT"|"personNav")[] - Expand related entities, see OData Expand
- \$select? ("addressAddress1"|"addressAddress2"|"addressAddress3"|"addressCity"|"addressCountry"|"addressCounty"|"addressProvince"|"addressState"|"addressZipCode"|"createdBy"|"createdDateTime"|"createdOn"|"email"|"isAddSameAsEmployee"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"name"|"operation"|"personIdExternal"|"phone"|"primaryFlag"|"relationship"|"secondPhone")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerNationalIdQueries
Represents the Queries record for the operation: getPerNationalId
Fields
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$select? ("cardType"|"country"|"createdBy"|"createdDateTime"|"createdOn"|"isPrimary"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"nationalId"|"notes"|"operation"|"personIdExternal")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerNationalIdWithValidityPeriodQueries
Represents the Queries record for the operation: getPerNationalIdWithValidityPeriod
Fields
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$select? ("cardType"|"country"|"createdBy"|"createdDateTime"|"createdOn"|"isPrimary"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"nationalId"|"notes"|"personIdExternal")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerPersonalQueries
Represents the Queries record for the operation: getPerPersonal
Fields
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$select? ("attachmentId"|"businessFirstName"|"businessLastName"|"createdBy"|"createdDateTime"|"createdOn"|"displayName"|"endDate"|"firstName"|"gender"|"includeAllRecords"|"initials"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"lastName"|"maritalStatus"|"middleName"|"nationality"|"nativePreferredLang"|"operation"|"personIdExternal"|"preferredName"|"salutation"|"script"|"startDate"|"title")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerPersonQueries
Represents the Queries record for the operation: getPerPerson
Fields
- \$expand? ("*"|"emailNav"|"emergencyContactNav"|"homeAddressNavDEFLT"|"nationalIdNav"|"personRerlationshipNav"|"personalInfoNav"|"phoneNav"|"socialAccountNav")[] - Expand related entities, see OData Expand
- \$select? ("birthName"|"countryOfBirth"|"createdBy"|"createdDateTime"|"createdOn"|"dateOfBirth"|"includeAllRecords"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"perPersonUuid"|"personId"|"personIdExternal"|"regionOfBirth"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerPersonRelationshipQueries
Represents the Queries record for the operation: getPerPersonRelationship
Fields
- \$expand? ("*"|"personNav"|"relNationalIdNav"|"relPersonNav"|"relPersonalNav")[] - Expand related entities, see OData Expand
- \$select? ("addressAddress1"|"addressAddress2"|"addressAddress3"|"addressCity"|"addressCountry"|"addressCounty"|"addressProvince"|"addressState"|"addressZipCode"|"attachmentId"|"createdBy"|"createdDateTime"|"createdOn"|"endDate"|"firstName"|"isAccompanyingDependent"|"isAddressSameAsPerson"|"isBeneficiary"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"lastName"|"operation"|"personIdExternal"|"relatedPersonIdExternal"|"relationshipType"|"startDate")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerPhoneQueries
Represents the Queries record for the operation: getPerPhone
Fields
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$select? ("areaCode"|"countryCode"|"createdBy"|"createdDateTime"|"createdOn"|"extension"|"includeAllRecords"|"isPrimary"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"phoneNumber"|"phoneType")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPerSocialAccountQueries
Represents the Queries record for the operation: getPerSocialAccount
Fields
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$select? ("createdBy"|"createdDateTime"|"createdOn"|"domain"|"imId"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"url")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: GetPersonKeyQueries
Represents the Queries record for the operation: getPersonKey
Fields
- \$select? ("perPersonUuid"|"personId"|"personIdExternal")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: HrisEmergencyContactAddressDEFLT
Fields
sap.successfactors.ecpersonalinformation: ListHrisEmergencyContactAddressDEFLTsQueries
Represents the Queries record for the operation: listHrisEmergencyContactAddressDEFLTs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("address1"|"address1 desc"|"address2"|"address2 desc"|"address3"|"address3 desc"|"address4"|"address4 desc"|"address5"|"address5 desc"|"addressId"|"addressId desc"|"addressType"|"addressType desc"|"city"|"city desc"|"country"|"country desc"|"county"|"county desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"endDate"|"endDate desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"notes"|"notes desc"|"province"|"province desc"|"startDate"|"startDate desc"|"state"|"state desc"|"zipCode"|"zipCode desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("address1"|"address2"|"address3"|"address4"|"address5"|"addressId"|"addressType"|"city"|"country"|"county"|"createdBy"|"createdDateTime"|"createdOn"|"endDate"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"notes"|"province"|"startDate"|"state"|"zipCode")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListNameElementGOsQueries
Represents the Queries record for the operation: listNameElementGOs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("NameFormatGO_externalCode"|"NameFormatGO_externalCode desc"|"createdBy"|"createdBy desc"|"createdDate"|"createdDate desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDate"|"lastModifiedDate desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedDateWithTZ"|"lastModifiedDateWithTZ desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc"|"nameArtifactEnum"|"nameArtifactEnum desc"|"sampleData"|"sampleData desc"|"separator"|"separator desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("NameFormatGO_externalCode"|"createdBy"|"createdDate"|"createdDateTime"|"externalCode"|"lastModifiedBy"|"lastModifiedDate"|"lastModifiedDateTime"|"lastModifiedDateWithTZ"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"nameArtifactEnum"|"sampleData"|"separator")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListNameFormatGOsQueries
Represents the Queries record for the operation: listNameFormatGOs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"externalCode"|"externalCode desc"|"externalName"|"externalName desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"mdfSystemCreatedBy"|"mdfSystemCreatedBy desc"|"mdfSystemCreatedDate"|"mdfSystemCreatedDate desc"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveEndDate desc"|"mdfSystemEffectiveStartDate"|"mdfSystemEffectiveStartDate desc"|"mdfSystemEntityId"|"mdfSystemEntityId desc"|"mdfSystemLastModifiedBy"|"mdfSystemLastModifiedBy desc"|"mdfSystemLastModifiedDate"|"mdfSystemLastModifiedDate desc"|"mdfSystemLastModifiedDateWithTZ"|"mdfSystemLastModifiedDateWithTZ desc"|"mdfSystemObjectType"|"mdfSystemObjectType desc"|"mdfSystemRecordId"|"mdfSystemRecordId desc"|"mdfSystemRecordStatus"|"mdfSystemRecordStatus desc"|"mdfSystemStatus"|"mdfSystemStatus desc"|"mdfSystemTransactionSequence"|"mdfSystemTransactionSequence desc"|"mdfSystemVersionId"|"mdfSystemVersionId desc"|"sample"|"sample desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"nameElements")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("createdBy"|"createdDateTime"|"externalCode"|"externalName"|"lastModifiedBy"|"lastModifiedDateTime"|"mdfSystemCreatedBy"|"mdfSystemCreatedDate"|"mdfSystemEffectiveEndDate"|"mdfSystemEffectiveStartDate"|"mdfSystemEntityId"|"mdfSystemLastModifiedBy"|"mdfSystemLastModifiedDate"|"mdfSystemLastModifiedDateWithTZ"|"mdfSystemObjectType"|"mdfSystemRecordId"|"mdfSystemRecordStatus"|"mdfSystemStatus"|"mdfSystemTransactionSequence"|"mdfSystemVersionId"|"sample")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerAddressDEFLTsQueries
Represents the Queries record for the operation: listPerAddressDEFLTs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("address1"|"address1 desc"|"address2"|"address2 desc"|"address3"|"address3 desc"|"address4"|"address4 desc"|"address5"|"address5 desc"|"addressType"|"addressType desc"|"city"|"city desc"|"country"|"country desc"|"county"|"county desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"empUsersSysId"|"empUsersSysId desc"|"endDate"|"endDate desc"|"includeAllRecords"|"includeAllRecords desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"notes"|"notes desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"province"|"province desc"|"startDate"|"startDate desc"|"state"|"state desc"|"zipCode"|"zipCode desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("address1"|"address2"|"address3"|"address4"|"address5"|"addressType"|"city"|"country"|"county"|"createdBy"|"createdDateTime"|"createdOn"|"empUsersSysId"|"endDate"|"includeAllRecords"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"notes"|"operation"|"personIdExternal"|"province"|"startDate"|"state"|"zipCode")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerBiographicalInfoLocBRAsQueries
Represents the Queries record for the operation: listPerBiographicalInfoLocBRAs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("country"|"country desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"customString1"|"customString1 desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"placeOfBirth"|"placeOfBirth desc"|"regionOfBirth"|"regionOfBirth desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("country"|"createdBy"|"createdDateTime"|"createdOn"|"customString1"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"placeOfBirth"|"regionOfBirth")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerBiographicalInfoLocCHLsQueries
Represents the Queries record for the operation: listPerBiographicalInfoLocCHLs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("country"|"country desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"customString1"|"customString1 desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"placeOfBirth"|"placeOfBirth desc"|"regionOfBirth"|"regionOfBirth desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("country"|"createdBy"|"createdDateTime"|"createdOn"|"customString1"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"placeOfBirth"|"regionOfBirth")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerBiographicalInfoLocFRAsQueries
Represents the Queries record for the operation: listPerBiographicalInfoLocFRAs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("country"|"country desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"customString1"|"customString1 desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"placeOfBirth"|"placeOfBirth desc"|"regionOfBirth"|"regionOfBirth desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("country"|"createdBy"|"createdDateTime"|"createdOn"|"customString1"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"placeOfBirth"|"regionOfBirth")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerBiographicalInfoLocITAsQueries
Represents the Queries record for the operation: listPerBiographicalInfoLocITAs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("country"|"country desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"customString1"|"customString1 desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"placeOfBirth"|"placeOfBirth desc"|"regionOfBirth"|"regionOfBirth desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("country"|"createdBy"|"createdDateTime"|"createdOn"|"customString1"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"placeOfBirth"|"regionOfBirth")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerBiographicalInfoLocVENsQueries
Represents the Queries record for the operation: listPerBiographicalInfoLocVENs
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("country"|"country desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"customString1"|"customString1 desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"placeOfBirth"|"placeOfBirth desc"|"regionOfBirth"|"regionOfBirth desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("country"|"createdBy"|"createdDateTime"|"createdOn"|"customString1"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"placeOfBirth"|"regionOfBirth")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerEmailsQueries
Represents the Queries record for the operation: listPerEmails
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"emailAddress"|"emailAddress desc"|"emailType"|"emailType desc"|"includeAllRecords"|"includeAllRecords desc"|"isPrimary"|"isPrimary desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("createdBy"|"createdDateTime"|"createdOn"|"emailAddress"|"emailType"|"includeAllRecords"|"isPrimary"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerEmergencyContactssQueries
Represents the Queries record for the operation: listPerEmergencyContactss
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("addressAddress1"|"addressAddress1 desc"|"addressAddress2"|"addressAddress2 desc"|"addressAddress3"|"addressAddress3 desc"|"addressCity"|"addressCity desc"|"addressCountry"|"addressCountry desc"|"addressCounty"|"addressCounty desc"|"addressProvince"|"addressProvince desc"|"addressState"|"addressState desc"|"addressZipCode"|"addressZipCode desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"email"|"email desc"|"isAddSameAsEmployee"|"isAddSameAsEmployee desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"name"|"name desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"phone"|"phone desc"|"primaryFlag"|"primaryFlag desc"|"relationship"|"relationship desc"|"secondPhone"|"secondPhone desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"addressNavDEFLT"|"personNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("addressAddress1"|"addressAddress2"|"addressAddress3"|"addressCity"|"addressCountry"|"addressCounty"|"addressProvince"|"addressState"|"addressZipCode"|"createdBy"|"createdDateTime"|"createdOn"|"email"|"isAddSameAsEmployee"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"name"|"operation"|"personIdExternal"|"phone"|"primaryFlag"|"relationship"|"secondPhone")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerNationalIdsQueries
Represents the Queries record for the operation: listPerNationalIds
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("cardType"|"cardType desc"|"country"|"country desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"isPrimary"|"isPrimary desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"nationalId"|"nationalId desc"|"notes"|"notes desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("cardType"|"country"|"createdBy"|"createdDateTime"|"createdOn"|"isPrimary"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"nationalId"|"notes"|"operation"|"personIdExternal")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerNationalIdWithValidityPeriodsQueries
Represents the Queries record for the operation: listPerNationalIdWithValidityPeriods
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("cardType"|"cardType desc"|"country"|"country desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"isPrimary"|"isPrimary desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"nationalId"|"nationalId desc"|"personIdExternal"|"personIdExternal desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("cardType"|"country"|"createdBy"|"createdDateTime"|"createdOn"|"isPrimary"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"nationalId"|"notes"|"personIdExternal")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerPersonalsQueries
Represents the Queries record for the operation: listPerPersonals
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("attachmentId"|"attachmentId desc"|"businessFirstName"|"businessFirstName desc"|"businessLastName"|"businessLastName desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"displayName"|"displayName desc"|"endDate"|"endDate desc"|"firstName"|"firstName desc"|"gender"|"gender desc"|"includeAllRecords"|"includeAllRecords desc"|"initials"|"initials desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"lastName"|"lastName desc"|"maritalStatus"|"maritalStatus desc"|"middleName"|"middleName desc"|"nationality"|"nationality desc"|"nativePreferredLang"|"nativePreferredLang desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"preferredName"|"preferredName desc"|"salutation"|"salutation desc"|"script"|"script desc"|"startDate"|"startDate desc"|"title"|"title desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("attachmentId"|"businessFirstName"|"businessLastName"|"createdBy"|"createdDateTime"|"createdOn"|"displayName"|"endDate"|"firstName"|"gender"|"includeAllRecords"|"initials"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"lastName"|"maritalStatus"|"middleName"|"nationality"|"nativePreferredLang"|"operation"|"personIdExternal"|"preferredName"|"salutation"|"script"|"startDate"|"title")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerPersonRelationshipsQueries
Represents the Queries record for the operation: listPerPersonRelationships
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("addressAddress1"|"addressAddress1 desc"|"addressAddress2"|"addressAddress2 desc"|"addressAddress3"|"addressAddress3 desc"|"addressCity"|"addressCity desc"|"addressCountry"|"addressCountry desc"|"addressCounty"|"addressCounty desc"|"addressProvince"|"addressProvince desc"|"addressState"|"addressState desc"|"addressZipCode"|"addressZipCode desc"|"attachmentId"|"attachmentId desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"endDate"|"endDate desc"|"firstName"|"firstName desc"|"isAccompanyingDependent"|"isAccompanyingDependent desc"|"isAddressSameAsPerson"|"isAddressSameAsPerson desc"|"isBeneficiary"|"isBeneficiary desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"lastName"|"lastName desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"relatedPersonIdExternal"|"relatedPersonIdExternal desc"|"relationshipType"|"relationshipType desc"|"startDate"|"startDate desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"personNav"|"relNationalIdNav"|"relPersonNav"|"relPersonalNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("addressAddress1"|"addressAddress2"|"addressAddress3"|"addressCity"|"addressCountry"|"addressCounty"|"addressProvince"|"addressState"|"addressZipCode"|"attachmentId"|"createdBy"|"createdDateTime"|"createdOn"|"endDate"|"firstName"|"isAccompanyingDependent"|"isAddressSameAsPerson"|"isBeneficiary"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"lastName"|"operation"|"personIdExternal"|"relatedPersonIdExternal"|"relationshipType"|"startDate")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerPersonsQueries
Represents the Queries record for the operation: listPerPersons
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("birthName"|"birthName desc"|"countryOfBirth"|"countryOfBirth desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"dateOfBirth"|"dateOfBirth desc"|"includeAllRecords"|"includeAllRecords desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"perPersonUuid"|"perPersonUuid desc"|"personId"|"personId desc"|"personIdExternal"|"personIdExternal desc"|"regionOfBirth"|"regionOfBirth desc"|"userId"|"userId desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"emailNav"|"emergencyContactNav"|"homeAddressNavDEFLT"|"nationalIdNav"|"personRerlationshipNav"|"personalInfoNav"|"phoneNav"|"socialAccountNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("birthName"|"countryOfBirth"|"createdBy"|"createdDateTime"|"createdOn"|"dateOfBirth"|"includeAllRecords"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"perPersonUuid"|"personId"|"personIdExternal"|"regionOfBirth"|"userId")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerPhonesQueries
Represents the Queries record for the operation: listPerPhones
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("areaCode"|"areaCode desc"|"countryCode"|"countryCode desc"|"createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"extension"|"extension desc"|"includeAllRecords"|"includeAllRecords desc"|"isPrimary"|"isPrimary desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"phoneNumber"|"phoneNumber desc"|"phoneType"|"phoneType desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("areaCode"|"countryCode"|"createdBy"|"createdDateTime"|"createdOn"|"extension"|"includeAllRecords"|"isPrimary"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"phoneNumber"|"phoneType")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPerSocialAccountsQueries
Represents the Queries record for the operation: listPerSocialAccounts
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("createdBy"|"createdBy desc"|"createdDateTime"|"createdDateTime desc"|"createdOn"|"createdOn desc"|"domain"|"domain desc"|"imId"|"imId desc"|"lastModifiedBy"|"lastModifiedBy desc"|"lastModifiedDateTime"|"lastModifiedDateTime desc"|"lastModifiedOn"|"lastModifiedOn desc"|"operation"|"operation desc"|"personIdExternal"|"personIdExternal desc"|"url"|"url desc")[] - Order items by property values, see OData Sorting
- \$expand? ("*"|"personNav")[] - Expand related entities, see OData Expand
- \$count? boolean - Include count of items, see OData Count
- \$select? ("createdBy"|"createdDateTime"|"createdOn"|"domain"|"imId"|"lastModifiedBy"|"lastModifiedDateTime"|"lastModifiedOn"|"operation"|"personIdExternal"|"url")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: ListPersonKeysQueries
Represents the Queries record for the operation: listPersonKeys
Fields
- \$skip? int - Skip the first n items, see OData Paging - Skip
- \$top int(default 20) - Show only the first n items, see OData Paging - Top
- \$filter? string - Filter items by property values, see OData Filtering
- \$search? string - Search items by search phrases, see OData Searching
- \$orderby? ("perPersonUuid"|"perPersonUuid desc"|"personId"|"personId desc"|"personIdExternal"|"personIdExternal desc")[] - Order items by property values, see OData Sorting
- \$count? boolean - Include count of items, see OData Count
- \$select? ("perPersonUuid"|"personId"|"personIdExternal")[] - Select properties to be returned, see OData Select
sap.successfactors.ecpersonalinformation: NameElementGO
Fields
- NameFormatGO_externalCode? string -
- externalCode? string -
sap.successfactors.ecpersonalinformation: NameFormatGO
Fields
- d? NameFormatGO -
sap.successfactors.ecpersonalinformation: PerAddressDEFLT
Fields
- d? PerAddressDEFLT -
sap.successfactors.ecpersonalinformation: PerBiographicalInfoLocBRA
Fields
sap.successfactors.ecpersonalinformation: PerBiographicalInfoLocCHL
Fields
sap.successfactors.ecpersonalinformation: PerBiographicalInfoLocFRA
Fields
- country? string -
- personIdExternal? string -
sap.successfactors.ecpersonalinformation: PerBiographicalInfoLocITA
Fields
- country? string -
- personIdExternal? string -
sap.successfactors.ecpersonalinformation: PerBiographicalInfoLocVEN
Fields
sap.successfactors.ecpersonalinformation: PerEmail
Fields
- d? PerEmail -
sap.successfactors.ecpersonalinformation: PerEmergencyContacts
Fields
- d? PerEmergencyContacts -
sap.successfactors.ecpersonalinformation: PerNationalId
Fields
- d? PerNationalId -
sap.successfactors.ecpersonalinformation: PerNationalIdWithValidityPeriod
Fields
- recordId? string -
- validFrom? string -
- validTo? string -
- cardType? string -
- country? string -
- personIdExternal? string -
- personNav? PerPerson -
sap.successfactors.ecpersonalinformation: PerPerson
Fields
- personIdExternal? string -
- emailNav? RelatedCollectionSFOData_PerEmail -
- emergencyContactNav? RelatedCollectionSFOData_PerEmergencyContacts -
- homeAddressNavDEFLT? RelatedCollectionSFOData_PerAddressDEFLT -
- nationalIdNav? RelatedCollectionSFOData_PerNationalId -
- personRerlationshipNav? RelatedCollectionSFOData_PerPersonRelationship -
- personalInfoNav? RelatedCollectionSFOData_PerPersonal -
- phoneNav? RelatedCollectionSFOData_PerPhone -
- socialAccountNav? RelatedCollectionSFOData_PerSocialAccount -
sap.successfactors.ecpersonalinformation: PerPersonal
Fields
- d? PerPersonal -
sap.successfactors.ecpersonalinformation: PerPersonRelationship
Fields
sap.successfactors.ecpersonalinformation: PerPhone
Fields
- personIdExternal? string -
- phoneType? string -
- personNav? PerPerson -
sap.successfactors.ecpersonalinformation: PerSocialAccount
Fields
- domain? string -
- personIdExternal? string -
- personNav? PerPerson -
sap.successfactors.ecpersonalinformation: PersonKey
Fields
- personIdExternal? string -
sap.successfactors.ecpersonalinformation: RelatedCollectionSFOData_NameElementGO
Fields
- results? NameElementGO[] -
sap.successfactors.ecpersonalinformation: RelatedCollectionSFOData_PerAddressDEFLT
Fields
- results? PerAddressDEFLT[] -
sap.successfactors.ecpersonalinformation: RelatedCollectionSFOData_PerEmail
Fields
- results? PerEmail[] -
sap.successfactors.ecpersonalinformation: RelatedCollectionSFOData_PerEmergencyContacts
Fields
- results? PerEmergencyContacts[] -
sap.successfactors.ecpersonalinformation: RelatedCollectionSFOData_PerNationalId
Fields
- results? PerNationalId[] -
sap.successfactors.ecpersonalinformation: RelatedCollectionSFOData_PerPersonal
Fields
- results? PerPersonal[] -
sap.successfactors.ecpersonalinformation: RelatedCollectionSFOData_PerPersonRelationship
Fields
- results? PerPersonRelationship[] -
sap.successfactors.ecpersonalinformation: RelatedCollectionSFOData_PerPhone
Fields
- results? PerPhone[] -
sap.successfactors.ecpersonalinformation: RelatedCollectionSFOData_PerSocialAccount
Fields
- results? PerSocialAccount[] -
sap.successfactors.ecpersonalinformation: Result
Fields
sap.successfactors.ecpersonalinformation: Wrapper
Fields
sap.successfactors.ecpersonalinformation: Wrapper_1
Fields
- d? CollectionofPerPhone -
sap.successfactors.ecpersonalinformation: Wrapper_10
Fields
sap.successfactors.ecpersonalinformation: Wrapper_11
Fields
sap.successfactors.ecpersonalinformation: Wrapper_12
Fields
sap.successfactors.ecpersonalinformation: Wrapper_13
Fields
sap.successfactors.ecpersonalinformation: Wrapper_14
Fields
sap.successfactors.ecpersonalinformation: Wrapper_15
Fields
sap.successfactors.ecpersonalinformation: Wrapper_16
Fields
sap.successfactors.ecpersonalinformation: Wrapper_17
Fields
sap.successfactors.ecpersonalinformation: Wrapper_18
Fields
sap.successfactors.ecpersonalinformation: Wrapper_2
Fields
sap.successfactors.ecpersonalinformation: Wrapper_3
Fields
sap.successfactors.ecpersonalinformation: Wrapper_4
Fields
sap.successfactors.ecpersonalinformation: Wrapper_5
Fields
sap.successfactors.ecpersonalinformation: Wrapper_6
Fields
sap.successfactors.ecpersonalinformation: Wrapper_7
Fields
- d? CollectionofPerEmail -
sap.successfactors.ecpersonalinformation: Wrapper_8
Fields
sap.successfactors.ecpersonalinformation: Wrapper_9
Fields
Import
import ballerinax/sap.successfactors.ecpersonalinformation;Metadata
Released date: 13 days ago
Version: 1.0.0
License: Apache-2.0
Compatibility
Platform: any
Ballerina version: 2201.12.0
GraalVM compatible: Yes
Pull count
Total: 15
Current verison: 14
Weekly downloads
Keywords
Business Management/HCM
Cost/Paid
Vendor/SAP
SuccessFactors
Employee Central
Contributors