Get all currencies of the owner
GET //api/owner/currency HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Accept: */*
OK
{ "currency": [ { "id": 1, "name": "text" } ] }
Add currency to owner
POST //api/owner/currency 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
Remove Owner Currency
DELETE //api/owner/currency HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 10 [ { "id": 1 } ]