getAccount

This method is used to get all information for an account (createAccount).

Log in to see full request history

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount ID that is generated by the API once an account is created (createAccount).

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAccount -d clientID=someclientid -d developerAPIKey=somedeveloperkey -d accountId=A77654

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
accountDetailsstringArray of account information (all information of the matched account)

Sample Response

{
	"statusCode": "101",
	"statusDesc": "Ok",
	"accountDetails": {
		"accountId": "A77654",
		"accountName": "john",
		"type": "Individual",
		"entityType": "Revocable Trust",
		"residentType": "domestic account",
		"address1": "First street",
		"address2": "Fourth Avenue",
		"city": "ATLANTA",
		"state": "GA",
		"zip": "43543",
		"country": "USA",
		"phone": "4152323232",
		"taxID": "43543543",
		"kycStatus": "Pending",
		"kycDate": "2016-02-23 13:29:30",
		"amlStatus": "Pending",
		"amlDate": "2016-02-23 13:29:30",
		"suitabilityScore": "5",
		"suitabilityDate": "2016-02-23 13:29:30",
		"suitabilityApprover": "Smith",
		"accreditedStatus": "Pending",
		"accreditedInvestor": "income",
		"accreditedInvestorDate": "02-02-2016",
		"506cLimit": "50000",
		"accountTotalLimit": "1000000",
		"singleInvestmentLimit": "1000",
		"associatedAC": "yes",
		"syndicate": "yes",
		"tags": "real estate",
		"notes": "Offers",
		"approvalStatus": "Pending",
		"approvalPrincipal": "Charles",
		"approvalLastReview": "12-02-2016",
    "archived_status":"0",
		"field1": "Account Field 1",
		"field2": "Account Field 2",
		"field3": "Account Field 3"
	}
}

Test it Yourself!

Body Params
string
required
string
required
string
required
Language
Click Try It! to start a request and see the response here!