getParty

This method is used to get all information about an individual Party. The Party ID must be specified as a request parameter to get the party information.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
partyIdyesstringParty ID that is generated by the API once an individual party is created (createParty)

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getParty
 -d developerAPIKey=somedeveloperkey
 -d clientID=someclientid
 -d partyId=P79443

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
partyDetailsstringList of party includes all information of the matched party (partyId, firstName,middleInitial,lastName,domicile,socialSecurityNumber,dob,primAddress1,primAddress2,primCity,primState,primZip,primCountry,emailAddress,emailAddress2,phone,phone2,occupation,associatedPerson,empCountry,empAddress1,empAddress2,empCity,empState,empZip,currentAnnIncome,avgAnnIncome,currentHouseholdIncome,avgHouseholdIncome,householdNetworth,kycStatus,kycDate,amlStatus,amlDate,tags,notes)

Sample Response

{
	"statusCode": "101",
	"statusDesc": "Ok",
	"partyDetails": [{
		"partyId": "P79443",
		"firstName": "John",
		"middleInitial": "D",
		"lastName": "Smith",
		"domicile": "U.S. citizen",
		"socialSecurityNumber": "112-22-3333",
		"dob": "03-24-1972",
		"primAddress1": "PEACHTREE PLACE",
		"primAddress2": "PEACHTREE PLACE",
		"primCity": "Atlanta",
		"primState": "GA",
		"primZip": "30318",
		"primCountry": "USA",
		"emailAddress": "[email protected]",
		"emailAddress2": "[email protected]",
		"phone": "9876543210",
		"phone2": "0123456789",
		"occupation": "DEVELOPER",
		"associatedPerson": "Yes",
		"empCountry": "USA",
		"empAddress1": "PEACHTREE PLACE",
		"empAddress2": "PEACHTREE PLACE",
		"empCity": "Atlanta",
		"empState": "GA",
		"empZip": "30318",
		"currentAnnIncome": "200000",
		"avgAnnIncome": "500000",
		"currentHouseholdIncome": "300000",
		"avgHouseholdIncome": "400000",
		"householdNetworth": "200000",
		"kycStatus": "Pending",
		"amlStatus": "Pending",
		"amlDate": "03-17-2016",
		"tags": "Tags Added",
		"notes": "Notes Added",
		"field1": "Account Field 1",
		"field2": "Account Field 2",
		"field3": "Account Field 3"
	}]
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!