GET users/{userUid}/accounts
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
userUid | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of AccountName | Description | Type | Additional 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": "bdeaf0b2-f4a1-4a30-b01a-b594fa8aaa6d" }, { "AccountCode": "sample string 1", "AccountType": 1, "IsActive": true, "AccountUid": "bdeaf0b2-f4a1-4a30-b01a-b594fa8aaa6d" } ]
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>bdeaf0b2-f4a1-4a30-b01a-b594fa8aaa6d</AccountUid> <IsActive>true</IsActive> </Account> <Account> <AccountCode>sample string 1</AccountCode> <AccountType>Individual</AccountType> <AccountUid>bdeaf0b2-f4a1-4a30-b01a-b594fa8aaa6d</AccountUid> <IsActive>true</IsActive> </Account> </ArrayOfAccount>