SuccessFactors Odata custom attributes → region, location, agency or vendorname & vpdepthead transforms ?
need to have correct full & single aggregation OData apis for webservice connector ?
tried these but getting errors and not able to have any data from successfactors source.
https://sf.base.url/
/odata/v2/User?$select=defaultFullName,status,department&$expand=empInfo,pronounsNav/picklistLabels&$filter=status in ‘active’&$format=json
https://sf.base.url
/odata/v2/User (‘{userId}’)?$format=JSON&$filter=status in ‘t’,‘f’,‘T’,‘F’,‘e’,‘d’&$expand=empInfo,manager
and also tried → to get all users,
GET https://sf.base.url
/odata/v2/User?$select=userId,firstName,status&$filter=status in ‘t’,‘f’,‘T’,‘F’,‘e’,‘d’&$format=JSON
To get single user,
GET https://sf.base.url
/odata/v2/User?$format=JSON&$filter=status in ‘t’,‘f’,‘T’,‘F’,‘e’,‘d’&$expand=empInfo,countryNav,manager
none of them worked ?