Geek Social — Documentação
API ReferenceOffers

GET /offers/{id}/history

Histórico de propostas da oferta

GET/offers/{id}/historyAuth: accessToken

Lista todas as proposals em ordem cronológica. Útil pra timeline de negociação.

Request

Esta requisição não tem corpo.

Response

200

Sem corpo na resposta.

Erros

Sem respostas de erro documentadas.

Exemplos

curl -X GET 'http://localhost:3003/offers/{id}/history' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer SEU_ACCESS_TOKEN' \
  -d '{}'
await fetch('http://localhost:3003/offers/{id}/history', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json',
    Authorization: 'Bearer ' + accessToken,
  },
  body: JSON.stringify({}),
})

Side effects

Relacionados

On this page