post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/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
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
partyId | yes | string | Party 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
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
partyDetails | string | List 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"
}]
}