Get all owner tokens
curl -L \ --url 'http://api.client.nbcgate.tech//api/owner/currency/tokens' \ --header 'Authorization: YOUR_API_KEY'
{ "tokens": [ { "id": 1, "tokenID": 1, "tokenName": "text" } ] }
Add token to owner
curl -L \ --request POST \ --url 'http://api.client.nbcgate.tech//api/owner/currency/tokens' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '[ { "id": 1 } ]'
No body
Delete owner token
curl -L \ --request DELETE \ --url 'http://api.client.nbcgate.tech//api/owner/currency/tokens' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '[ { "id": 1 } ]'