post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getEntityDocument
This method is used to get all information about individual Entity document. The Entity ID must be specified as a request parameter to get the Entity information.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
partyId | yes | string | Entity ID that is generated by the API once an individual Entity is created (createEntity) |
documentId | no | string | Document Id generated in the time of upload entity document API method call |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getEntityDocument
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d partyId=E79443
-d documentId=SDrKb
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
partyDocumentDetails | string | Get party document details |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"partyDocumentDetails": [{
"partyid": "E39944",
"documentid": "gHnhS",
"documentTitle": " Testing2",
"documentFileName": "GKrQ180918120031.pdf",
"documentFileReferenceCode": "180918120031",
"createdDate": "2020-01-28"
}]
}