createCustodyAgreementAttestation

This method is used to record when a party attests to North Capital account terms and conditions.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
accountIdyesstringAccount ID that is generated by the API once an account is created (createAccount).
isAttestedyesbooleantrue (accepted)
documentUrlyesstringURL for attestation document

Sample Request

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

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
attestationstringattestation details

attestationTypeDescription
accountIdstringAccount ID that has attested
isAttestedboolean1 = true, the party has attested
documentUrlstringURL for attestation
createdDatestringDate and timestamp of the attestation

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "attestation": {
        "accountId": "A98780730",
        "isAttested": "1",
        "documentUrl": "https://example.com",
        "createdDate": "2024-11-26 17:05:16"
    }
}

Test it Yourself!

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