post https://tapi-sandboxdash.norcapsecurities.com/getCustodialDocuments
This method is used to get the statements and tax forms for a North Capital Private Securities custodial account.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
accountId | yes | string | Account ID that is generated by the API once an account is created (createAccount) |
Sample Request
curl -k -X POST https://tapi-sandboxdash.norcapsecurities.com/getCustodialDocuments
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d accountId=accountId
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
accountDetails | string |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"accountDetails": [{
"Document Type": "PDF",
"Month": "4",
"Year": "2023",
"StatementURL": "url"
}]
}