# Get Account Details v3.1
The API can be used to get the details of the account of API user.
# Header fields
| Fieldname | Description |
|---|---|
| SOAPAction | Mandatory http://api.everbinding.nl/v3_1/GetAccountDetails |
# Example request
<?xml version="1.0" encoding="utf-8"?>
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body>
<GetAccountDetails xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.everbinding.nl/v3_1/"/>
</Body>
</Envelope>
# Response fields
| Fieldname | Description |
|---|---|
| Id | Account Id |
| Name | Account Name |
| EmailAddress | Email address added to the account |
| FaxNumber | FaxNumber |
| PhoneNumber | PhoneNumber |
| Website | Link to website |
| CanSendAppIntegrationRequests | Can this account send AppIntegrationRequests |
# Response 200
<?xml version="1.0" encoding="utf-8"?>
<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body>
<GetAccountDetailsResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://api.everbinding.nl/v3_1/">
<Id>Id1</Id>
<Name>Name1</Name>
<Description>Description1</Description>
<EmailAddress>EmailAddress1</EmailAddress>
<FaxNumber>FaxNumber1</FaxNumber>
<PhoneNumber>PhoneNumber1</PhoneNumber>
<Website>Website1</Website>
<CanSendAppIntegrationRequests>true</CanSendAppIntegrationRequests>
</GetAccountDetailsResponse>
</Body>
</Envelope>