sendPartyAgreement

This method is used to send the document/optional agreement to the party to sign. This document is usually presented to the party as an agreement that needs to be signed before they are allowed to invest (investor agreement).

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
partyIdyesstringParty ID that is generated by the API when an individual party is created (createParty)

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/sendPartyAgreement
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d partyId=P12345

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
partyDetailsstringParty details of the matched parties (partyId, documentKey)

Sample Response

{
    "statusCode": "101",
    "statusDesc": "Ok",
    "partyDetails": {
        "partyId": "7176503",
        "documentKey": "XLUR7ZL6L2BXBXD"
    }
}

Test it Yourself!

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