Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
type | no | string | account, party, entity and trade |
typeId | yes | string | Type related ID generated in TAPI |
bankName | no | string | bankName |
bankAddress | no | string | bankAddress |
bankCity | no | string | bankCity |
bankState | no | string | bankState |
bankZip | no | string | bankZip |
bankAccountNumber | no | string | bankAccountNumber |
bankAccountName | no | string | bankAccountName |
bankRoutingNumber | no | string | bankRoutingNumber |
bankSwiftAccount | no | string | bankSwiftAccount |
bankNotes | no | string | bankNotes |
bankTags | no | string | bankTags |
bankFurtherCreditAccountName | no | string | bankFurtherCreditAccountName |
bankFurtherCreditAccountNumber | no | string | bankFurtherCreditAccountNumber |
entityType | no | string | entityType |
otherEntityType | no | string | otherEntityType |
entityDetails | no | string | entityDetails |
otherEntityDetails | no | string | otherEntityDetails |
jurisdictionState | no | string | jurisdictionState |
jurisdictionCountry | no | string | jurisdictionCountry |
otherIDNumber | no | string | otherIDNumber |
otherIDDescription | no | string | otherIDDescription |
entityDomicile | no | string | entityDomicile |
beneficialPlanInvestor | no | string | beneficialPlanInvestor |
exemptionFromLimits | no | string | exemptionFromLimits |
exemptionFromLimitsNotes | no | string | exemptionFromLimitsNotes |
planAssetsEntity | no | string | planAssetsEntity |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/createWallet -d clientID=someclientid -d developerAPIKey=somedeveloperkey -d type=account -d typeId=A25562 -d bankAddress=test1 -d bankName=test2 -d bankCity=test4 -d bankState=test5 -d bankZip=test6 -d bankAccountNumber=test7 -d bankAccountName=test8 -d bankRoutingNumber=test9 -d bankSwiftAccount=test0 -d bankNotes=test1 -d bankTags=test2 -d bankFurtherCreditAccountName=test3 -d bankFurtherCreditAccountNumber=test4 -d entityType=test5 -d otherEntityType=test6 -d entityDetails=test7 -d otherEntityDetails=test8 -d jurisdictionState=test9 -d jurisdictionCountry=test0 -d otherIDNumber=test1 -d otherIDDescription=test2 -d entityDomicile=test3 -d beneficialPlanInvestor=test4 -d exemptionFromLimits=test5 -d exemptionFromLimitsNotes=test6 -d planAssetsEntity=test7
Parameter | Type | Description |
---|---|---|
clientID | string | API Status Code |
statusDesc | string | API Status Description |
extendedDataDetails | string | Wallet address in an array |
{ "statusCode": "101", "statusDesc": "Ok", "extendedDataDetails": [ { "extendedId": "10007", "type": "entity", "typeId": "E436092", "bankName": "test2", "bankAddress": "test3", "bankCity": "test4", "bankState": "test5", "bankZip": "test6", "bankAccountNumber": "test7", "bankAccountName": "test8", "bankRoutingNumber": "test9", "bankSwiftAccount": "test0", "bankNotes": "test1", "bankTags": "test2", "bankFurtherCreditAccountName": "test3", "bankFurtherCreditAccountNumber": "test4", "entityType": "test5", "otherEntityType": "test6", "entityDetails": "test7", "otherEntityDetails": "test8", "jurisdictionState": "test9", "jurisdictionCountry": "test0", "otherIDNumber": "test1", "otherIDDescription": "test2", "entityDomicile": "test3", "beneficialPlanInvestor": "test4", "exemptionFromLimits": "test5", "exemptionFromLimitsNotes": "test6", "planAssetsEntity": "test7" } ] }