post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/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
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI 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 | no | conditional | Status: Approved | Pending | Not Approved |
updatedIpAddress | yes | string | Requested 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
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"
}
]
]
}