Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
partyId | yes | string | Party ID created through createParty |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getPartyMailingAddress -d clientID=someclientid -d developerAPIKey=somedeveloperkey -d partyId=P93202
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Information |
partyDetails | string | Returns an array of party details |
{ "statusCode": "101", "statusDesc": "Ok", "partyDetails": [ { "partyId": "P93202", "mailingAddressLine1": "peachtree place", "mailingAddressLine2": "wall street", "mailingCity": "atlanta", "mailingState": "GA", "mailingZipCode": "45789", "mailingCountry": "USA", "createdDate": "2022-04-27 09:06:50", "updatedDate": "2022-04-27 09:07:06" } ] }