post https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteEntity
This method is used to delete a particular entity party. The entity Party ID must be specified as a request parameter to delete the entity party.
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
clientID | yes | string | TransactAPI Client ID |
developerAPIKey | yes | string | TransactAPI Developer Key |
partyId | yes | string | Party ID that is generated by the API once an entity Party is created (createEntity) |
Sample Request
curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/deleteEntity
-d developerAPIKey=somedeveloperkey
-d clientID=someclientid
-d partyId=P32126
Response Parameters
Parameter | Type | Description |
---|---|---|
statusCode | string | API Status Code |
statusDesc | string | API Status Description |
Sample Response
{
"statusCode": "101",
"statusDesc": "Party deleted successfully!"
}