Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
issuerName | yes | string | The name of the issuer. |
firstName | yes | string | The first name of the primary contact for the issuer. |
lastName | yes | string | The last name of the primary contact for the issuer. |
yes | string | The email address of the primary contact for the issuer. | |
phoneNumber | no | integer | The phone number of the primary contact for the issuer. |
createdIpAddress | no | integer | Created IP Address |
curl -k -X PUT https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/createIssuer -d developerAPIKey=somedeveloperkey -d clientID=someclientid -d issuerName=JohnDeo -d firstName=John -d lastName=Deo -d phoneNumber=4156985123 -d email=johndeo001@gmail.com -d createdIpAddress=10.0.0.9
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
issuerId | integer | ID for the issuer |
issuerStatus | string | Status of issuer - Approved | Pending | Not Approved |
{ "statusCode": "101", "statusDesc": "Ok", "issuerDetails": [ true, [ { "issuerId": "96763", "issuerStatus": "Pending" } ] ] }