Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
partyId | yes | string | Entity Party ID that is generated by the API when an entity party is created(createEntity) |
documentTitle | yes | string | Uploaded document title. Please use prefix "documentTitle0=" in the value of documentTitle field |
file_name | yes | string | Uploaded document file name. Please use prefix "filename0=" in the value of file_name field |
userfile0 | yes | string | PDF, jpg, and png files are supported. While uploading the files, please provide a temporary file name. Prefix @ on the file name. Eg : @/tmp/phpAHi2ZC Request parameter should be userfile0 for documents upload. Please Refer to Sample Request set below. |
createdIpAddress | yes | string | Requested IP Address |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/uploadEntityDocument -d clientID=someclientid -d developerAPIKey=somedeveloperkey -d partyId=E17080 -d documentTitle=test -d file_name=Uploaded file name -d userfile0=@/tmp/phpAHi2ZC -d createdIpAddress=10.0.0.9
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
document_details | string | Document has been uploaded Successfully |
{ "statusCode": "101", "statusDesc": "Ok", "document_details": "Document has been uploaded Successfully" }