GET users/{userUid}/accounts

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userUid

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

Collection of Account
NameDescriptionTypeAdditional information
AccountCode

string

None.

AccountType

AccountType

None.

IsActive

boolean

None.

AccountUid

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "AccountCode": "sample string 1",
    "AccountType": 1,
    "IsActive": true,
    "AccountUid": "12ce4f25-2c77-4019-9187-3e6a2bc413ca"
  },
  {
    "AccountCode": "sample string 1",
    "AccountType": 1,
    "IsActive": true,
    "AccountUid": "12ce4f25-2c77-4019-9187-3e6a2bc413ca"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GBI.WebAPI.RegistrationGateway.Business.Models.Registration">
  <Account>
    <AccountCode>sample string 1</AccountCode>
    <AccountType>Individual</AccountType>
    <AccountUid>12ce4f25-2c77-4019-9187-3e6a2bc413ca</AccountUid>
    <IsActive>true</IsActive>
  </Account>
  <Account>
    <AccountCode>sample string 1</AccountCode>
    <AccountType>Individual</AccountType>
    <AccountUid>12ce4f25-2c77-4019-9187-3e6a2bc413ca</AccountUid>
    <IsActive>true</IsActive>
  </Account>
</ArrayOfAccount>