GET company-identities/{companyidentityid}
Get a specific company identity by ID.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| companyidentityid | The ID of the company identity you want to retrieve. | integer | Required |
Body Parameters
None.
Response Information
Resource Description
Get a specific company identity by ID.
CompanyIdentityModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyIdentityAddress | The company identity Address. | AddressModel | None. |
| LogoURL | The company identities logo. | string | None. |
| CompanyIdentityID | The company identity ID. | integer | None. |
| CompanyIdentityName | The company Identity Name. | string | None. |
Response Formats
application/json, text/json
Sample:
{
"CompanyIdentityAddress": {
"FirstName": "John",
"LastName": "Smith",
"Company": "Company Identity 1",
"Address1": "the cottage",
"Address2": "1 street name",
"Suite": "",
"City": "City",
"State": "State",
"Postcode": "NG7 2RR",
"Country": "United Kingdom",
"PhoneNumber": "01234123456"
},
"LogoURL": "http://www.mycompany.co.uk/logo.gif",
"CompanyIdentityID": 1,
"CompanyIdentityName": "Company Identity 1"
}
application/xml, text/xml
Sample:
<CompanyIdentityModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CompanyIdentityID>1</CompanyIdentityID>
<CompanyIdentityName>Company Identity 1</CompanyIdentityName>
<CompanyIdentityAddress>
<FirstName>John</FirstName>
<LastName>Smith</LastName>
<Company>Company Identity 1</Company>
<Address1>the cottage</Address1>
<Address2>1 street name</Address2>
<Suite />
<City>City</City>
<State>State</State>
<Postcode>NG7 2RR</Postcode>
<Country>United Kingdom</Country>
<PhoneNumber>01234123456</PhoneNumber>
</CompanyIdentityAddress>
<LogoURL>http://www.mycompany.co.uk/logo.gif</LogoURL>
</CompanyIdentityModel>