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

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
partyIdyesstringEntity ID that is generated by the API once an individual Entity is created (createEntity)
documentIdnostringDocument 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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
partyDocumentDetailsstringGet 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"
	}]
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!