post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/requestAiVerification
This is used to send a request to verify the accredited status of an Account (createAccount).*** This Method has fees associated with it that will be charged for each use. The cost to use this method is $30 per request. Fees will only be charged in the live environment. ***
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
accountId | yes | string | Account ID that is generated by the API once an account is created (createAccount) |
aiMethod | yes | conditional | Accreditation method: Upload |
notes | no | string | Notes for request |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/requestAiVerification
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A12345
-d aiMethod=Upload
-d notes=Test
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
accreditedDetails | string | Array of account accredited details |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"accreditedDetails": [
{
"accountId": "A85479",
"aiRequestStatus": "Pending",
"airequestId": "6v7pDd",
"accreditedStatus": "Self Accredited"
}
]
}