post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getCustodianDetailsforOffering
This method is used to retrieve the wire and check funding instructions for the custodian of a specific offering.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
offeringId | yes | integer | Offering 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
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
custodianDetails | string | Array 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"
}
}
}