Общие конечные точки
PUT https://ipn.tools/api/upd_addr
curl --location --request PUT 'https://ipn.tools/api/upd_addr' \
--header 'Content-Type: application/json' \
--data '{
"address": "<address>",
"secret_key": "<secret_key>"
}'import requests
import json
url = "https://ipn.tools/api/upd_addr"
payload = json.dumps({
"address": "<address>",
"secret_key": "<secret_key>"
})
headers = {
'Content-Type': 'application/json'
}
response = requests.put(url, headers=headers, data=payload)
print(response.text)
Field
Type
Description
Field
Type
Description
DELETE https://ipn.tools/api/upd_addr
Field
Type
Description
Field
Type
Description
POST https://ipn.tools/api/upd_addr
Field
Type
Description
Field
Type
Description
Last updated