Skip to main content
GET
/
offers
/
{id}
Get offer by Id
curl --request GET \
  --url https://api.market.iventou.com.br/offers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "owner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "origin": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "is_batch": true
  },
  "price": 20000,
  "name": "Resale book for Halloween VIP",
  "event_name": "Halloween"
}

Authorizations

Authorization
string
header
required

Token from partner authetnication

Path Parameters

id
string
required

Response

200 - application/json

Offer retrieved successfully

id
string<uuid>
required
owner_id
string<uuid>
required
origin
object
required
price
number
required
Required range: x >= 1
Example:

20000

name
string
required
Minimum length: 3
Example:

"Resale book for Halloween VIP"

event_name
string
required
Minimum length: 3
Example:

"Halloween"