GET api/crm/companylist/get

Gets the complete list of your organizations, including the office address and the general contact.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CustomerCode": "49954",
    "Name": "Firm limited",
    "Email": "info@venue.com",
    "Vat": "BE123.456.789",
    "VatTransfer": true,
    "Phone": "555-333-001",
    "Contact": {
      "Gender": "male",
      "FirstName": "Minnie",
      "LastName": "Eusden",
      "Title": "Ceo",
      "Email": "Annie@venues.com",
      "Phone": "555.123.457",
      "Mobile": "",
      "LanguageCode": "EN"
    },
    "Address": {
      "AddressLineOne": "Road to venue 12",
      "AddressLineTwo": "",
      "PostalCode": "1234",
      "City": "Sarma",
      "CountryCode": "GB",
      "State": ""
    },
    "CustomFields": {
      "companycode": "12321"
    }
  },
  {
    "CustomerCode": "24543",
    "Name": "Firm limited",
    "Email": "info@venue.com",
    "Vat": "BE123.456.789",
    "VatTransfer": true,
    "Phone": "555-333-005",
    "Contact": {
      "Gender": "male",
      "FirstName": "Helen",
      "LastName": "Montague",
      "Title": "Ceo",
      "Email": "Daisy@venues.com",
      "Phone": "555.123.457",
      "Mobile": "",
      "LanguageCode": "EN"
    },
    "Address": {
      "AddressLineOne": "Road to venue 12",
      "AddressLineTwo": "",
      "PostalCode": "1234",
      "City": "Sarma",
      "CountryCode": "GB",
      "State": ""
    },
    "CustomFields": {
      "companycode": "12321"
    }
  },
  {
    "CustomerCode": "74052",
    "Name": "Firm c°",
    "Email": "info@venue.com",
    "Vat": "BE123.456.789",
    "VatTransfer": true,
    "Phone": "555-333-005",
    "Contact": {
      "Gender": "male",
      "FirstName": "Maude",
      "LastName": "Schindler",
      "Title": "Ceo",
      "Email": "Nellie@venues.com",
      "Phone": "555.123.457",
      "Mobile": "",
      "LanguageCode": "EN"
    },
    "Address": {
      "AddressLineOne": "Road to venue 12",
      "AddressLineTwo": "",
      "PostalCode": "1234",
      "City": "Sarma",
      "CountryCode": "GB",
      "State": ""
    },
    "CustomFields": {
      "companycode": "12321"
    }
  }
]

application/xml, text/xml

Sample:
<ArrayOfCompanyList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Expodoc.Api.Classes.Contracts.Crm">
  <CompanyList>
    <Address>
      <AddressLineOne>Road to venue 12</AddressLineOne>
      <AddressLineTwo></AddressLineTwo>
      <City>Sarma</City>
      <CountryCode>GB</CountryCode>
      <PostalCode>1234</PostalCode>
      <State></State>
    </Address>
    <Contact>
      <Email>Annie@venues.com</Email>
      <FirstName>Minnie</FirstName>
      <Gender>male</Gender>
      <LanguageCode>EN</LanguageCode>
      <LastName>Eusden</LastName>
      <Mobile></Mobile>
      <Phone>555.123.457</Phone>
      <Title>Ceo</Title>
    </Contact>
    <CustomFields xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringanyType>
        <d3p1:Key>companycode</d3p1:Key>
        <d3p1:Value xmlns:d5p1="http://www.w3.org/2001/XMLSchema" i:type="d5p1:string">12321</d3p1:Value>
      </d3p1:KeyValueOfstringanyType>
    </CustomFields>
    <CustomerCode>49954</CustomerCode>
    <Email>info@venue.com</Email>
    <Name>Firm limited</Name>
    <Phone>555-333-001</Phone>
    <Vat>BE123.456.789</Vat>
    <VatTransfer>true</VatTransfer>
  </CompanyList>
  <CompanyList>
    <Address>
      <AddressLineOne>Road to venue 12</AddressLineOne>
      <AddressLineTwo></AddressLineTwo>
      <City>Sarma</City>
      <CountryCode>GB</CountryCode>
      <PostalCode>1234</PostalCode>
      <State></State>
    </Address>
    <Contact>
      <Email>Daisy@venues.com</Email>
      <FirstName>Helen</FirstName>
      <Gender>male</Gender>
      <LanguageCode>EN</LanguageCode>
      <LastName>Montague</LastName>
      <Mobile></Mobile>
      <Phone>555.123.457</Phone>
      <Title>Ceo</Title>
    </Contact>
    <CustomFields xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringanyType>
        <d3p1:Key>companycode</d3p1:Key>
        <d3p1:Value xmlns:d5p1="http://www.w3.org/2001/XMLSchema" i:type="d5p1:string">12321</d3p1:Value>
      </d3p1:KeyValueOfstringanyType>
    </CustomFields>
    <CustomerCode>24543</CustomerCode>
    <Email>info@venue.com</Email>
    <Name>Firm limited</Name>
    <Phone>555-333-005</Phone>
    <Vat>BE123.456.789</Vat>
    <VatTransfer>true</VatTransfer>
  </CompanyList>
  <CompanyList>
    <Address>
      <AddressLineOne>Road to venue 12</AddressLineOne>
      <AddressLineTwo></AddressLineTwo>
      <City>Sarma</City>
      <CountryCode>GB</CountryCode>
      <PostalCode>1234</PostalCode>
      <State></State>
    </Address>
    <Contact>
      <Email>Nellie@venues.com</Email>
      <FirstName>Maude</FirstName>
      <Gender>male</Gender>
      <LanguageCode>EN</LanguageCode>
      <LastName>Schindler</LastName>
      <Mobile></Mobile>
      <Phone>555.123.457</Phone>
      <Title>Ceo</Title>
    </Contact>
    <CustomFields xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringanyType>
        <d3p1:Key>companycode</d3p1:Key>
        <d3p1:Value xmlns:d5p1="http://www.w3.org/2001/XMLSchema" i:type="d5p1:string">12321</d3p1:Value>
      </d3p1:KeyValueOfstringanyType>
    </CustomFields>
    <CustomerCode>74052</CustomerCode>
    <Email>info@venue.com</Email>
    <Name>Firm c°</Name>
    <Phone>555-333-005</Phone>
    <Vat>BE123.456.789</Vat>
    <VatTransfer>true</VatTransfer>
  </CompanyList>
</ArrayOfCompanyList>