post https://tapi-sandboxdash.norcapsecurities.com/getLinkedAccounts
This API will show all accounts that are linked to the party id.
Request Parameters
| Parameter | Required | Type | Description | 
|---|---|---|---|
| clientID | yes | string | TransactAPI Client ID | 
| developerAPIKey | yes | string | TransactAPI Developer Key | 
| partyId | yes | string | Link party ID that is generated by the API once a link is created(createLink) | 
Sample Request
curl -k -X POST https://tapi-sandboxdash.norcapsecurities.com/getLinkedAccounts
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d partyId=P12345Response Parameters
| Parameter | Type | Description | 
|---|---|---|
| statusCode | string | API Status Code | 
| statusDesc | string | API Status Description | 
| linkDetails | string | Array of link includes all information of the matched link (linkId, firstEntryType, firstEntry, relatedEntryType, relatedEntry, linkType, notes) | 
Sample Response
{
    "statusCode": "101",
    "statusDesc": "Ok",
    "linkDetails": [
        {
            "id": "330",
            "firstEntryType": "Account",
            "firstEntry": "A51242",
            "relatedEntry": "P99324",
            "relatedEntryType": "IndivACParty",
            "linkType": "owner",
            "notes": ""
        }
    ]
}
