Skip to main content
PUT
/
api
/
billing
/
ejecucion
/
errors
/
{errorId}
/
status
Update error status
curl --request PUT \
  --url https://api.raul.ugps.io/api/billing/ejecucion/errors/{errorId}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "estado": "resuelto",
  "fechaResolucion": "<string>"
}
'
{
  "id": "<string>",
  "ejecucion_id": "<string>",
  "tipo_error": "<string>",
  "mensaje": "<string>",
  "fecha_error": "2023-11-07T05:31:56Z",
  "estado": "<string>",
  "client_id": "<string>",
  "factura_id": 123,
  "contexto_json": {},
  "stack_trace": "<string>",
  "fecha_resolucion": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Path Parameters

errorId
string
required

Body

application/json
estado
string
required

New status

Example:

"resuelto"

fechaResolucion
string

Resolution date

Response

id
string
required
ejecucion_id
string
required
tipo_error
string
required
mensaje
string
required
fecha_error
string<date-time>
required
estado
string
required
client_id
string
factura_id
number
contexto_json
object
stack_trace
string
fecha_resolucion
string<date-time>