post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getAiRequest
This method is used to retrieve the status of an accreditation verification request (requestAiVerification) for a specific account.
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) |
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
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": {
"request": [
{
"airequestId": "vvNlBU",
"accountId": "A11685",
"aiMethod": "Upload",
"allow": "Pending",
"aiDate": "0000-00-00",
"reviewedBy": "Testing",
"notes": "Test",
"aiRequestStatus": "Need More Info"
}
]
}
}