# Configuration

## Get Account Configuration

> Retrieve account configuration details.

```json
{"openapi":"3.0.3","info":{"title":"Aquanow CAMS REST API","version":"1.0"},"servers":[{"url":"https://cams.aquanow.com/api","description":"production"},{"url":"http://localhost:3001/api","description":"local"},{"url":"https://camsapi-dev.aquanow.com/api","description":"dev"},{"url":"https://camsapi-staging.aquanow.com/api","description":"staging"},{"url":"https://cams.cert.aquanow.com/api","description":"cert"}],"security":[{"Bearer":[]}],"components":{"securitySchemes":{"Bearer":{"type":"http","scheme":"bearer"}},"schemas":{"AccountStatus":{"type":"string","enum":["ACTIVE","INACTIVE","CREATING"]},"AccountType":{"type":"string","enum":["CREDIT","CASH"]},"DepositBankInstruction":{"type":"object","properties":{"currency":{"type":"string","nullable":false},"beneficiaryType":{"$ref":"#/components/schemas/BeneficiaryType","nullable":false},"beneficiaryLegalName":{"type":"string","nullable":false},"beneficiaryAddress":{"$ref":"#/components/schemas/BankInstructionAddress","nullable":false},"beneficiaryBankName":{"type":"string","nullable":false},"beneficiaryBankAddress":{"$ref":"#/components/schemas/BankInstructionAddress","nullable":false},"beneficiaryBankBic":{"type":"string","nullable":false},"routingCode":{"type":"string","nullable":true},"beneficiaryAccountNumber":{"type":"string","nullable":false},"beneficiaryBankMemo":{"type":"string","nullable":true},"intermediaryBankName":{"type":"string","nullable":true},"intermediaryBankAddress":{"$ref":"#/components/schemas/BankInstructionAddress","nullable":true},"intermediaryBankBic":{"type":"string","nullable":true},"intermediaryAccountNumber":{"type":"string","nullable":true}}},"BeneficiaryType":{"title":"BeneficiaryType","type":"string","enum":["CORPORATE"]},"BankInstructionAddress":{"title":"BankInstructionAddress","type":"object","required":["addressLine1","city","region","country"],"properties":{"addressLine1":{"type":"string"},"addressLine2":{"type":"string"},"city":{"type":"string"},"region":{"type":"string"},"country":{"type":"string"},"postalCode":{"type":"string"}}}},"responses":{"400":{"description":"Validation Error"},"401":{"description":"Unauthorized"},"403":{"description":"Insufficient Privileges"},"4XX":{"description":"Client error"},"5XX":{"description":"Server error"}}},"paths":{"/v1/accounts/{accountId}/configuration":{"get":{"summary":"Get Account Configuration","description":"Retrieve account configuration details.","tags":["Accounts"],"parameters":[{"name":"accountId","in":"path","required":true,"schema":{"type":"string","format":"uuid"},"description":"The account ID"}],"responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"type":"object","properties":{"accountId":{"type":"string","format":"uuid"},"accountStatus":{"$ref":"#/components/schemas/AccountStatus"},"creditLimit":{"type":"string","format":"integer"},"accountType":{"$ref":"#/components/schemas/AccountType"},"tradeStrategyEnablement":{"type":"array","items":{"type":"string","enum":["RFQ"]}},"pairEnablement":{"type":"array","items":{"type":"string","enum":["BTC-USD","ETH-USD"]}},"depositBankInstructions":{"type":"array","nullable":false,"items":{"$ref":"#/components/schemas/DepositBankInstruction"}},"depositWallets":{"type":"array","items":{"type":"object","properties":{"asset":{"type":"string"},"network":{"type":"string"},"address":{"type":"string"}}}}}}}}},"400":{"$ref":"#/components/responses/400"},"401":{"$ref":"#/components/responses/401"},"403":{"$ref":"#/components/responses/403"},"4XX":{"$ref":"#/components/responses/4XX"},"5XX":{"$ref":"#/components/responses/5XX"}},"operationId":"GetAccountConfiguration"}}}}
```
