Get all owner tokens
GET //api/owner/currency/tokens HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Accept: */*
OK
{ "tokens": [ { "id": 1, "tokenID": 1, "tokenName": "text" } ] }
Add token to owner
POST //api/owner/currency/tokens HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 10 [ { "id": 1 } ]
No Content
No content
Delete owner token
DELETE //api/owner/currency/tokens HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 10 [ { "id": 1 } ]