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

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
issuerNameyesstringThe name of the issuer.
firstNameyesstringThe first name of the primary contact for the issuer.
lastNameyesstringThe last name of the primary contact for the issuer.
emailyesstringThe email address of the primary contact for the issuer.
phoneNumbernointegerThe phone number of the primary contact for the issuer.
createdIpAddressnostringCreated 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

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
issuerIdintegerID for the issuer
issuerStatusstringStatus of issuer - Approved | Pending | Not Approved

Sample Response

{
  "statusCode": "101",
  "statusDesc": "Ok",
  "issuerDetails": [
    true,
    [
      {
        "issuerId": "96763",
        "issuerStatus": "Pending"
      }
    ]
  ]
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!