Negociada

Notifica quando o status da fatura muda para em negociada

Response params

id
string

Id do evento

event
string

Nome do evento

sentDate
string

Data do envio do evento

data
object

Dados da fatura, produtor, comprador

data.id
string
data.status
string
data.buyer
object

Dados do comprador

data.buyer.email
string

Email do comprador

data.buyer.name
string

Nome do comprador

data.buyer.phone
string

Telefone do comprador

data.buyer.phone2
string

Telefone do comprador

data.buyer.cellphone
string

Celular do comprador

data.producer
object

Dados do produtor

data.producer.id
string

Id do produtor

data.producer.name
string

Nome do produtor

data.producer.email
string

Email do produtor

data.createdAt
string

Data de criação da fatura

data.price
object
data.price.currency
string

Moeda da fatura

data.price.value
number

Valor total da fatura

data.paymentMethod
string

Método de pagamento

data.installments
number

Número de parcelas

data.items
object

Itens da fatura

data.items.productId
string

Id do produto

data.items.name
string

Nome do produto

data.items.refundPeriod
object

Periodo de reembolso

data.items.refundPeriod.durationType
string

Tipo de duração

data.items.refundPeriod.value
number

Tempo de duração

data.items.price
object
data.items.price.currency
string

Moeda que o item foi oferecido

data.items.price.value
number

Valor do item

Payload

1{
2  "id": "zszf0uk65g701io8dbsckfeld",
3  "event": "myeduzz.invoice_negotiated",
4  "sentDate": "2024-01-20T15:00:00.000Z",
5  "data": {
6    "id": "12345678",
7    "status": "negotiated",
8    "buyer": {
9      "name": "Alice Johnson",
10      "email": "alice.johnson@example.com",
11      "phone": "555-789-1234",
12      "phone2": "555-987-6543",
13      "cellphone": "555-321-9876"
14    },
15    "producer": {
16      "email": "orbita@eduzz.com",
17      "id": "1454585458",
18      "name": "Orbita"
19    },
20    "createdAt": "2024-01-09T14:45:00.000Z",
21    "price": {
22      "currency": "BRL",
23      "value": 301.5
24    },
25    "paymentMethod": "creditCard",
26    "installments": 1,
27    "items": [
28      {
29        "productId": "P567",
30        "name": "Widget X",
31        "refundPeriod": {
32          "durationType": "days",
33          "value": 7
34        },
35        "price": {
36          "currency": "BRL",
37          "value": 150.75
38        }
39      },
40      {
41        "productId": "P789",
42        "name": "Gadget Y",
43        "refundPeriod": {
44          "durationType": "days",
45          "value": 7
46        },
47        "price": {
48          "currency": "BRL",
49          "value": 150.75
50        }
51      }
52    ]
53  }
54}