updateIssuer

This method is used to update a particular issuer in Transact API. You will need to specify the Issuer ID as a request parameter for the update to take place.

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
issuerIdyesintegerIssuer ID that is generated by the API when an Issuer is created (createIssuer)
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.
issuerStatusnoconditionalStatus: Approved | Pending | Not Approved
updatedIpAddressyesstringRequested IP Address

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/updateIssuer
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d issuerId=652683

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!