DeleteApplication
Deletes an application from the Shamwari Network. Only the application developer may delete.
Request
POST /nxt?requestType=deleteApplication
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
application | string | Application ID to delete | Yes |
secretPhrase | string | Developer's secret passphrase | Yes |
Response
{
"transaction": "1234567890123456789",
"fullHash": "abc123def456...",
"errorCode": 0,
"errorDescription": ""
}
Example
curl -X POST "http://localhost:22024/nxt?requestType=deleteApplication" \
-d "application=9876543210123456789" \
-d "secretPhrase=your_secret_passphrase"