Confirm Request

To use this feature you must have the API key. Read here to view how to get our API key.

Confirm to end of the Energy rental.

After using all the energy, confirm that the system will end the rental order. The sooner you confirm, the more costs you save.

POST https://api.tronsave.io/v0/fast-charge-order-confirmation

Confirm to end of the Energy rental by API key

Rate limit: 1 request per 2 seconds

Headers

Name
Type
Description

apikey*

String

Tronsave API key that present for the internal account

Request Body

Name
Type
Description

order_ids

Array

Array orderID. A list of order IDs that have been created and need to be confirmed.

{
    "confirmation_results": [
        {
            "order_id": string, // id of order
            "is_success": boolean, //he status of the cancel action
            "fail_reason": string,// By default, a successful cancel returns null. If the cancel fails, it will return the reason for failure.
        }
    ]
}

Example

Last updated