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). |
isAttested | yes | boolean | true (accepted) |
documentUrl | yes | string | URL for attestation document |
curl -k -X POSThttps://tapi-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/createCustodyAgreementAttestation
-d clientID=someclientid
-d developerAPIKey=somedeveloperkey
-d accountId=A2624258
-d isAttested=true
-d documentUrl=https://example.com
Parameter | Type | Description |
---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
attestation | string | attestation details |
attestation | Type | Description |
---|
accountId | string | Account ID that has attested |
isAttested | boolean | 1 = true, the party has attested |
documentUrl | string | URL for attestation |
createdDate | string | Date and timestamp of the attestation |
{
"statusCode": "101",
"statusDesc": "Ok",
"attestation": {
"accountId": "A98780730",
"isAttested": "1",
"documentUrl": "https://example.com",
"createdDate": "2024-11-26 17:05:16"
}
}