Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
partyId | yes | string | Party ID that is generated by the API once an individual party is created (createParty). |
type | yes | string | Type (This will be either Basic, Enhanced or AML Only) |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getKycAmlResponse -d developerAPIKey=somedeveloperkey -d clientID=someclientid -d partyId=P79443 -d type=basic
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Information |
kycamlDetails | string | List of party includes recent kyc/aml information of the matched party. |
{ "statusCode": "101", "statusDesc": "Ok", "kycamlDetails": { "statusCode": "101", "statusDesc": "Ok", "kyc": { "response": { "id-number": "3429150818", "summary-result": { "key": "id.success", "message": "PASS" }, "results": { "key": "result.match", "message": "ID Located" }, "qualifiers": { "qualifier": { "key": "resultcode.zip.does.not.match", "message": "ZIP Code Does Not Match" } }, "idnotescore": "0" }, "kycstatus": "Auto Approved", "amlstatus": "Auto Approved" } } }