getAiRequest

This method is used to retrieve the status of an accreditation verification request (requestAiVerification) for 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)

Sample Request

curl -k -X POST http:///api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAiRequest
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A52991

Response Parameters

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

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "accreditedDetails": {
        "request": [
            {
                "airequestId": "vvNlBU",
                "accountId": "A11685",
                "aiMethod": "Upload",
                "allow": "Pending",
                "aiDate": "0000-00-00",
                "reviewedBy": "Testing",
                "notes": "Test",
                "aiRequestStatus": "Need More Info"
            }
        ]
    }
}

Test it Yourself!

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