Currency

Get all currencies of the owner

get

Get all currencies of the owner

Authorizations
Responses
200
OK
application/json
get
GET //api/owner/currency HTTP/1.1
Host: api.client.nbcgate.tech
Authorization: YOUR_API_KEY
Accept: */*
{
  "currency": [
    {
      "id": 1,
      "name": "text"
    }
  ]
}

Add currency to owner

post

Add currency to owner

Authorizations
Body
idintegerOptional
Responses
204
No Content
post
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

Remove Owner Currency

delete

Remove Owner Currency

Authorizations
Body
idintegerOptional
Responses
204
No Content
delete
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
  }
]

No content