unsuspend
GET
/module/unsuspend/Unsuspending a service
When you want to unsuspend a service that has been previously suspended, you need to call this method. For example, after a user's service period ends and the service is suspended, if the user decides to renew their service, this method should be executed.
Request Parameters
agentKey
(required): The agent key.apiKey
(required): The service API key.
Response
status
: The status of the response.message
: Additional information or message related to the response.apiKey
: The API key associated with the unsuspend method request.
Request
Query Params
agentKey
string
required
Example:
AGENTKEY
apiKey
string
required
Example:
ServiceAPIKEY
Request samples
Responses
unsuspend(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
status
string
required
message
string
required
apiKey
string
required
Exampleunsuspend
{
"status": "true",
"message": "The service was unsuspend successfully",
"apiKey": "ServiceAPIKEY"
}
Last modified: 5 months ago