post https://tapi-sandboxdash.norcapsecurities.com/recordAttestation
This method is used to record when a party attests to North Capital account terms and conditions.
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). |
attest | yes | string | true (accepted) or false (not accepted) |
attestName | yes | string | Attestname (recordAttestation) |
Sample Request
curl -k -X POSThttps://tapi-sandboxdash.norcapsecurities.com/recordAttestation
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A2624258
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
orderDetails | string | orderDetails of the matched recordAttestation |
Sample Response
{
"statusCode": "101",
"statusDesc": "Ok",
"orderDetails": {
"Attest": "false",
"Created date": "2023-11-20 11:49:30",
"Attest Name": "Test attestName false",
"Account ID": "A2624258"
}
}