Get all currencies of the owner
curl -L \ --url 'http://api.client.nbcgate.tech//api/owner/currency' \ --header 'Authorization: YOUR_API_KEY'
{ "currency": [ { "id": 1, "name": "text" } ] }
Add currency to owner
curl -L \ --request POST \ --url 'http://api.client.nbcgate.tech//api/owner/currency' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '[ { "id": 1 } ]'
No body
Remove Owner Currency
curl -L \ --request DELETE \ --url 'http://api.client.nbcgate.tech//api/owner/currency' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '[ { "id": 1 } ]'