Favorite

Owner's Product List

get

Owner's Product List

Authorizations
Responses
200

OK

application/json
get
GET //api/product/favorite HTTP/1.1
Host: api.client.nbcgate.tech
Authorization: YOUR_API_KEY
Accept: */*
[
  {
    "id": 1,
    "name": "text"
  }
]

Add product to favorites

post

Add product to favorites

Authorizations
Bodyobject[]
idintegerOptional
Responses
204

No Content

No content

post
POST //api/product/favorite 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 product from favorites

delete

Remove product from favorites

Authorizations
Bodyobject[]
idintegerOptional
Responses
204

No Content

No content

delete
DELETE //api/product/favorite HTTP/1.1
Host: api.client.nbcgate.tech
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 10

[
  {
    "id": 1
  }
]

No content