Skip to main content

RenewApplication

Renews an application's registration on the Shamwari Network. Only the application developer may renew.

Request

POST /nxt?requestType=renewApplication

All endpoints use port 22024 by default.

Parameters

NameTypeDescriptionRequired
applicationstringApplication ID to renewYes
secretPhrasestringDeveloper's secret passphraseYes

Response

{
"transaction": "1234567890123456789",
"fullHash": "abc123def456...",
"errorCode": 0,
"errorDescription": ""
}

Example

curl -X POST "http://localhost:22024/nxt?requestType=renewApplication" \
-d "application=9876543210123456789" \
-d "secretPhrase=your_secret_passphrase"