getAiDocument

This method is used to retrieve a list of all accreditation documents associated with a specific account.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount ID that is generated by the API once an account is created (createAccount)
documentIdnostringDocument Id generated by the 'uploadVerificationDocument' method

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAiDocument
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d accountId=A74413
-d documentId=SDrKb

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstingAPI Status Description
document_detailsstringArray of verification document details associated with

Sample Response

{
	"statusCode": "101",
	"statusDesc": "Ok",
	"document_details": [{
		"accountId": "A74413",
		"documentid": "gHnhS",
		"documentTitle": " Testing2",
		"documentFileName": "GKrQ180918120031.pdf",
		"documentFileReferenceCode": "180918120031",
		"createdDate": "2018-09-18"
	}]
}

Test it Yourself!

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