| get_pvl_tramitacao | R Documentation |
Retrieves processing status for PVL requests that were approved
(deferred) and involve non-credit operations. This endpoint only
returns data for PVLs with status "Deferido". For most PVLs (e.g.,
archived, in progress, or credit operations), this will return an
empty tibble.
get_pvl_tramitacao(
id_pleito,
use_cache = TRUE,
verbose = FALSE,
page_size = NULL,
max_rows = Inf
)
get_pvl_status(request_id, use_cache = TRUE, verbose = FALSE,
page_size = NULL, max_rows = Inf)
id_pleito |
Integer. Database ID of a deferred PVL request
(from the |
use_cache |
Logical. If |
verbose |
Logical. If |
page_size |
Integer or |
max_rows |
Numeric. Maximum number of rows to return. Defaults
to |
request_id |
Integer. Database ID of a deferred PVL request.
Obtain from the |
To find PVLs that have data in this endpoint, filter by
status == "Deferido" in the results of get_pvl().
get_pvl_status() is an English alias.
A tibble with PVL processing status data. Returns an empty tibble if the PVL is not an approved non-credit operation.
Other SADIPEM:
get_opc_cronograma_liberacoes(),
get_opc_cronograma_pagamentos(),
get_opc_taxa_cambio(),
get_pvl(),
get_res_cdp(),
get_res_cronograma_pagamentos()
## Not run:
# Step 1: search PVLs and filter for approved ones
pvl_pe <- get_pvl(uf = "PE")
pvl_deferidos <- pvl_pe[pvl_pe$status == "Deferido", ]
# Step 2: pick an id_pleito from the APPROVED requests
id <- pvl_deferidos$id_pleito[1]
# Step 3: get processing status (only works for deferred PVLs)
status <- get_pvl_tramitacao(id_pleito = id)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.