Workplace data includes current self-reported place of employment information. Data attributes include names, titles, dates, company name, contact information, and more.
1. Add your access profile, username, and search type to the request headers.
Please Note
Workplace will be the search type in your request headers for "galaxy-search-type"
- galaxy-ap-name: [Access Profile Name]
- galaxy-ap-password: [Access Profile Password]
- galaxy-client-session-id: (Optional) Session ID for logging
- galaxy-client-type: [Galaxy Client Type] (required for Javascript clients)
- galaxy-search-type: [Workplace]
2. Add search criteria to your request.
{
"BusinessName": "Test",
"State" : "CA",
"ResultsPerPage": 10,
}
3. (Optional) Add Sort criteria. The maximum allowed number of sort items is 5. It will default to return results in descending order when not specified.
{
"BusinessName": "Test",
"State" : "CA",
"Sort": "business_name desc",
"ResultsPerPage": 10,
}
4. (Optional) Add QueryCriteria. OR and NOT operators can be included to increase or narrow your results.
{
"BusinessName": "Test",
"State" : "CA",
"Sort": "business_name desc",
"QueryCriteria": [
{
"Field": "City",
"Operator": "OR",
"Values": ["Los Angeles, Sacramento"]
},
{
"Field": "JobTitle",
"Operator": "NOT" ,
"Values": ["SPECIAL COORDINATOR"]
}
],
"ResultsPerPage": 10,
}
5. (Optional) Add Scope. Only used inside QueryCriteria. Values can be "Current" or "All." Defaults to "Current".
{
"BusinessName": "Test",
"State" : "CA",
"Sort": "business_name desc",
"QueryCriteria": [
{
"Field": "City",
"Operator": "OR",
"Values": ["Los Angeles, Sacramento"]
},
{
"Field": "JobTitle",
"Operator": "NOT" ,
"Values": ["SPECIAL COORDINATOR"],
"Scope" : "current"
}
],
"ResultsPerPage": 10,
}
6. Submit your search.