GET api/Vet/V1/Employers/{employerid}

Get employer information by specified employer id/code

Request Information

URI Parameters

NameDescriptionTypeAdditional information
employerid

Employer id/code

string

Required

Body Parameters

None.

Response Information

Resource Description

ModelVetEmployerV1, if found. Else, 404 (Not found).

ModelVetEmployerV1
NameDescriptionTypeAdditional information
EmployerCode

Unique employer code/identifier

string

None.

EmployerName

Employer legal name

string

None.

UserName

User name. It can be null.

string

None.

Email

Contact email address

string

None.

ABN

Company ABN number

string

None.

ContactPerson

Contact person name

string

None.

TradingName

Company trading name

string

None.

Response Formats

application/json, text/json

Sample:
{
  "EmployerCode": "sample string 1",
  "EmployerName": "sample string 2",
  "UserName": "sample string 3",
  "Email": "sample string 4",
  "ABN": "sample string 5",
  "ContactPerson": "sample string 6",
  "TradingName": "sample string 7"
}

application/xml, text/xml

Sample:
<ModelVetEmployerV1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DotEdu_WebAPI.Models.Vet.V1">
  <ABN>sample string 5</ABN>
  <ContactPerson>sample string 6</ContactPerson>
  <Email>sample string 4</Email>
  <EmployerCode>sample string 1</EmployerCode>
  <EmployerName>sample string 2</EmployerName>
  <TradingName>sample string 7</TradingName>
  <UserName>sample string 3</UserName>
</ModelVetEmployerV1>