GET v1/Customers/{customerID}/Employers
Get a list of employers for a customer id (for 3rd party devs)
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
customerID |
Id of the customer |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
List of employers
Collection of CustomerEmployerDTOName | Description | Type | Additional information |
---|---|---|---|
ServerID | integer |
None. |
|
EmployerID | integer |
None. |
|
Title | string |
None. |
|
Company | string |
None. |
|
EmployedFrom | date |
None. |
|
EmployedTo | date |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ServerID": 1, "EmployerID": 2, "Title": "sample string 3", "Company": "sample string 4", "EmployedFrom": "2024-11-21T06:47:32.416028+00:00", "EmployedTo": "2024-11-21T06:47:32.416028+00:00" }, { "ServerID": 1, "EmployerID": 2, "Title": "sample string 3", "Company": "sample string 4", "EmployedFrom": "2024-11-21T06:47:32.416028+00:00", "EmployedTo": "2024-11-21T06:47:32.416028+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfCustomerEmployerDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/QQSolutions.NextGen.ModelLibrary.DataTransferObjects.Contacts"> <CustomerEmployerDTO> <Company>sample string 4</Company> <EmployedFrom>2024-11-21T06:47:32.416028+00:00</EmployedFrom> <EmployedTo>2024-11-21T06:47:32.416028+00:00</EmployedTo> <EmployerID>2</EmployerID> <ServerID>1</ServerID> <Title>sample string 3</Title> </CustomerEmployerDTO> <CustomerEmployerDTO> <Company>sample string 4</Company> <EmployedFrom>2024-11-21T06:47:32.416028+00:00</EmployedFrom> <EmployedTo>2024-11-21T06:47:32.416028+00:00</EmployedTo> <EmployerID>2</EmployerID> <ServerID>1</ServerID> <Title>sample string 3</Title> </CustomerEmployerDTO> </ArrayOfCustomerEmployerDTO>