Create License Cancellation Request
With this API command, "Create License Cancellation Request" process is provided.
| METHOD | POST |
| URL | < API URL >order/cancel |
| Content-Type | application/json |
Parameters
| Name | Mandatory | Description |
| key | Yes | API key information you obtained. |
| id | Yes | ID number of the service. |
| reason | Optional | The reason for the cancellation. |
| urgency | Yes | Cancellation priority. Possible values: period-ending : Cancel at the end time of the service. now: It's cancel immediately. |
Sample Request
{
"key":"< API KEY >",
"id":1001,
"reason":"something write here...",
"urgency":"now"
}
Sample Output
{
"status":"successful"
}