Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name
Type
Description
Available from version
BrickIdGuid

The BrickId of the account


CreatedDateDateTimeThe date when the account was created2.02.20160429
AccountNoStringThe account number of the account
BaseCurrencyCodeStringThe currency code of the accounts base currency
OwnerAccountLabelStringThe label of the account
OwnerGuidThe BrickId of the owner of the account
AccountTypeKeyStringAccount type of the account
AccountStatusInteger

1=Open

2=Closed

4=Hidden (hidden on customer front end)


ExternalReferenceStringExternal reference of the account
AllocationProfileGuidThe associated allocation profile (portfolio) of the account
ResellerGuidThe BrickId of the associated reseller for the account
ResellerNoStringThe reseller number of the associated reseller for the account
AccountCommentStringAccount comment of the account2.02
InsuranceOwnerGuidInsurance Owner of the account. Only available if addon Insurance Accounts is enabled.2.07
InsuredGuidInsured of the account. Only available if addon Insurance Accounts is enabled.2.07
InsurancePayerGuidInsurance Payer of the account. Only available if addon Insurance Accounts is enabled.2.07
ContactLegalEntityGuidContact Legal Entity of the account2.07
CustomFieldsObject[]CustomFields is an array of CustomField objects. Each CustomField consists of two strings, FieldName and Value. There are no datatypes associated with these properties, they are just a way for api-users to add custimized data to the object.2.09



Code Block
languagexml
themeRDark
titleXML request example
linenumberstrue
collapsetrue
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <GetAccounts xmlns="http://tempuri.org/">
      <req>
        <Credentials>
          <UserName>yourusername</UserName>
          <Password>yourpassword</Password>
        </Credentials>
        <identify>youridentifier</identify>
        <Args>
          <AllocationProfile xsi:nil="true" />
          <ExternalReferences>
            <string>1234</string>
          </ExternalReferences>
          <AccountStatus xsi:nil="true" />
          <CreatedDateFrom xsi:nil="true" />
          <CreatedDateTo xsi:nil="true" />
        </Args>
        <Fields>
          <BrickId>true</BrickId>
          <AccountNo>true</AccountNo>
          <BaseCurrencyCode>true</BaseCurrencyCode>
          <OwnerAccountLabel>true</OwnerAccountLabel>
          <Owner>true</Owner>
          <AccountTypeKey>true</AccountTypeKey>
          <AccountStatus>true</AccountStatus>
          <ExternalReference>true</ExternalReference>
          <AllocationProfile>true</AllocationProfile>
		  <AccountComment>true</AccountComment>
        </Fields>
      </req>
    </GetAccounts>
  </s:Body>
</s:Envelope>

...