post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/requestUploadPartyDocument
This method is used to collect documents when North Capital is providing a manual review of KYC/AML. There is an additional reviewing fee that will be charged to use this method.
Request Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| clientID | yes | string | TransactAPI Client ID |
| developerAPIKey | yes | string | TransactAPI Developer Key |
| requestId | yes | string | Party Request ID Generated by API |
| investorId | yes | string | Party Id or Entity Id or Account Id Generated by API |
| documentTitle | yes | string | Uploaded document title. Legacy users can still use the prefix "documentTitle0=" but it is no longer required. |
| userfile0 | yes | string | While uploading the PDF files, please provide a temporary file name. Prefix @ on the file name. Eg : @/tmp/phpAHi2ZC Request parameter should be userfile0 for documents upload.Refer Sample Request set below |
| createdIpAddress | yes | string | Requested IP Address |
Sample Request
curl --location --request POST 'https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/requestUploadPartyDocument'
--form 'documentTitle="documentTitle0= NEw REquest DOc&"'
--form 'userfile0=@"/C:/Users/marim/OneDrive/Desktop/3pmR29DZ562837683a10bcAI.pdf"'
--form 'developerAPIKey=""'
--form 'clientID=""'
--form 'requestId=""'
--form 'investorId=""'
--form 'createdIpAddress="117.221.66.34"'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| statusCode | string | API Status Code |
| statusDesc | string | API Status Description |
| documentDetails | string | Document has been uploaded successfully |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"document_details": "Document has been uploaded Successfully"
}
