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

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount ID that is generated by the API once an account is created (createAccount)
aiMethodyesconditionalAccreditation method: Upload
notesnostringNotes 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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
accreditedDetailsstringArray of account accredited details

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "accreditedDetails": [
        {
            "accountId": "A85479",
            "aiRequestStatus": "Pending",
            "airequestId": "6v7pDd",
            "accreditedStatus": "Self Accredited"
        }
    ]
}

Test it Yourself!

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