getCustodianDetailsforOffering

This method is used to retrieve the wire and check funding instructions for the custodian of a specific offering.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
offeringIdyesintegerOffering ID that is generated by the API when an Offering is created (createOffering)

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCustodianDetailsforOffering
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d offeringId=8139

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
custodianDetailsstringArray of custodian details includes all information of the matched custodian

Sample Response

{
  "statusCode": "101",
  "statusDesc": "Ok",
  "custodianDetails": {
    "name": "Kingdom Trust",
    "additionaldescription": "Additional Test Content",
    "wire": {
      "description": "Please send wires to the following",
      "receivingbank": "FNB BANK",
      "accountnumber": "987654321",
      "routingnumber": "123456789",
      "reference": "NC-[YOUR NAME] AND 123456789",
      "address1": "101 E Boradway, PO Box 369",
      "address2": "",
      "city": "Murray",
      "state": "KY",
      "zip": "42071",
      "country": "USA",
      "receivingfinancialinstitution": "Kingdom Trust",
      "swiftcode": "8745965",
      "beneficiary": "Kingdom Trust",
      "beneficiaryaccountnumber": "14258966"
    },
    "check": {
      "description": "To send check through Fedex or UPS",
      "mailto": "The Kingdom Trust Company",
      "address1": "1105 St Rt 121 N",
      "address2": "Unit B",
      "city": "Murray",
      "state": "KY",
      "zip": "42071",
      "country": "USA",
      "postaldescription": "To send via regular mail",
      "postaladdress": "The Kingdom Trust Company PO Box 870",
      "postalcity": "Murray",
      "postalstate": "KY",
      "postalzip": "42071",
      "postalcountry": "USA"
    }
  }
}

Test it Yourself!

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