GET company-identities
Get all company Identities
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Get all company Identities
Collection of CompanyIdentityModelName | 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": "My Company 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": "My Company 1" }, { "CompanyIdentityAddress": { "FirstName": "John", "LastName": "Smith", "Company": "My Company 2", "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": 2, "CompanyIdentityName": "My Company 2" } ]
application/xml, text/xml
Sample:
<ArrayOfCompanyIdentityModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <CompanyIdentityModel> <CompanyIdentityID>1</CompanyIdentityID> <CompanyIdentityName>My Company 1</CompanyIdentityName> <CompanyIdentityAddress> <FirstName>John</FirstName> <LastName>Smith</LastName> <Company>My Company 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> <CompanyIdentityModel> <CompanyIdentityID>2</CompanyIdentityID> <CompanyIdentityName>My Company 2</CompanyIdentityName> <CompanyIdentityAddress> <FirstName>John</FirstName> <LastName>Smith</LastName> <Company>My Company 2</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> </ArrayOfCompanyIdentityModel>