Skip to main content
PUT
/
request
/
updateStatus
Atualiza o status de um ou mais orçamento(s)/pedido(s)
curl --request PUT \
  --url https://backend-pied-prod.piedadmin.com.br/api/v2/request/updateStatus \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "update": [
    {
      "code": "codigo123",
      "newStatus": "ID do status",
      "sequence": "Sequencia numérica"
    }
  ]
}
'
{
  "data": {
    "success": true
  },
  "error": null
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
update
object[]

Response

OK

data
object
error
string
Example:

null