Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | Transact API Client ID |
developerAPIKey | yes | string | Transact API Developer Key |
issuerId | yes | integer | Issuer ID that is generated by the API when an Issuer is created(createIssuer) |
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. |
issuerStatus | yes | conditional | Status: Approved | Pending | Not Approved |
updatedIpAddress | yes | integer | Requested IP Address |
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateIssuer -d developerAPIKey=somedeveloperkey -d clientID=someclientid -d issuerId=652683
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" } ] ] }