cURL
curl --request PATCH \ --url https://api.paylora.org/api/v1/token/{uuid} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "network": "ARB_SEPOLIA", "name": "USDT", "address": "0xAbC123...", "status": "whitelisted" } '
{ "success": true, "data": { "uuid": "<string>", "name": "<string>", "address": "<string>", "network": "ARB_SEPOLIA", "decimals": 18, "status": "<string>" } }
Update Token by uuid. Permissions [“admin”]
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The UUID of the Token
"a1b2c3d4-e5f6-7890-1234-567890abcdef"
The network of the transaction
"ARB_SEPOLIA"
The name of the token
"USDT"
The contract address of the token
"0xAbC123..."
The status of the token
whitelisted
not_whitelisted
"whitelisted"
Resource model
Indicates if the request was successful
true
The data returned by the API
Show child attributes
18