put https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/createIssuer
This method is used to create an Issuer in Transact API. This method will return the Issuer ID as a successful response.
Request Parameters
| Parameter | Required | Type | Description | 
|---|---|---|---|
| clientID | yes | string | TransactAPI Client ID | 
| developerAPIKey | yes | string | TransactAPI 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 | string | Created IP Address | 
Sample Request
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 protected]
-d createdIpAddress=10.0.0.9 Response Parameters
| 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 | 
Sample Response
{
  "statusCode": "101",
  "statusDesc": "Ok",
  "issuerDetails": [
    true,
    [
      {
        "issuerId": "96763",
        "issuerStatus": "Pending"
      }
    ]
  ]
}