# Get Account Parties v3.1
Get a list of parties (like companies) in an account. This API will bring information only about the domestic companies and it will skip the partner companies. Get parties that are connected to the current account.
# Header fields
Fieldname | Description |
---|---|
SOAPAction | Mandatory http://api.everbinding.nl/v3_1/GetAccountParties |
# Request fields
Fieldname | Description |
---|---|
Paging | Defines the current result set |
Search | See: Document filters |
# Example request
<?xml version="1.0" encoding="utf-8"?>
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body>
<GetAccountParties xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.everbinding.nl/v3_1/">
<Search/>
<Paging>
<Limit>1</Limit>
<StartPage>StartPage1</StartPage>
</Paging>
</GetAccountParties>
</Body>
</Envelope>
# Response fields
Fieldname | Description |
---|---|
Results | List of companies available in the account |
PartyAccountDetails | Company details |
PartyAccountDetails/Name | Company Name |
PartyAccountDetails/Address | Company Address |
PartyAccountDetails/EConnectPartyId | Id used within eVerbindin (XCNLnnnnnnn) |
PartyAccountDetails/Description | Company Description |
PartyAccountDetails/Account | Account |
PartyAccountDetails/IsRegisteredToPeppol | Is this company registered within the PEPPOL network |
PartyAccountDetails/IsVerified | Is this company verified and active to be used. |
PagingResponse | Paging result |
PagingResponse/NextPage | Id for next page when there are more results. |
# Response 200
<?xml version="1.0" encoding="utf-8"?>
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP:Body>
<GetAccountPartiesReponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.everbinding.nl/v3_1/">
<Results>
<PartyAccountDetails>
<PartyAccountDetails>
<Name>A company in Norway</Name>
<Address>
<HouseNumber>Skoyen</HouseNumber>
<PostalCode>0275</PostalCode>
<Residence>Oslo</Residence>
<CountryCode>Norway</CountryCode>
</Address>
<EConnectPartyId>XCNO000001</EConnectPartyId>
<Description>Test company with VAT form Norway and ORGNR</Description>
<Account>
<Id>A000000218</Id>
<Name>eLien</Name>
</Account>
<IsRegisteredToPeppol>true</IsRegisteredToPeppol>
<IsVerified>true</IsVerified>
</PartyAccountDetails>
</PartyAccountDetails>
</Results>
<PagingResponse>
<NextPage>W6BgcT321506437600572</NextPage>
</PagingResponse>
</GetAccountPartiesReponse>
</SOAP:Body>
</SOAP:Envelope>