Method track

Expect a certain payment

An alternative way to receive funds. If you know in advance where and how much will be paid, then you can clearly identify such a transaction.
For example, a buyer wants to pay $100 worth of goods. Recalculating this amount at the current rate, you get (for example) 0.5 ETH. Through this method, add invoice by specifying address, amount and label with the username or account number. After that, inform the buyer that he need to pay 0.5 ETH. After payment you will receive a notification with the previously indicated label. This option is based on the belief that at some time only the system and the payer know how much the system expects. If two or more people want to pay $100 at the same time, the service will slightly “correct” (by +0.000001 ETH) the amount of payment for each subsequent invoices so that it is unique and does not equal with the amount of other customers.

Options:
address
*token - Token ID
amount
*statusURL
tag
*uniqID
*lifetime

Call Example:
https://etherapi.net/api/v2/.track?key=7f11318c57-d80ec82a73-8ae56f31cc-a9c336253b&address=0xa122eae4ebdd5e44ca4c27043dda859da841b09c&amount=0.5&tag=user5&lifetime=60
The answer on success:
{
   result: {
       address: ADDRESS_SPECIFIED_IN_CALL
       amount: 0.500001 (equal to or slightly different from that specified in the call)
   }
}