Listar Tabelas
info
Descrição
Este serviço possibilita, a consulta das tabelas disponiveis para INSS NOVO e os seus respectivos valores.
Endpoint
GET /inss/v1/rebates_parceiro?op_type=””&legal_rep=””
Headers
{
"Authorization": "Bearer {TOKEN_DO_LOGIN}",
}
Exemplo de Requisição com cURL
GET /inss/v1/rebates_parceiro?op_type=NOVO&legal_rep=false
curl -X GET "https://nossa-fintech-api.spixiiservices.com.br/inss/v1/rebates_parceiro?op_type=NOVO&legal_rep=false" \
-H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
Parâmetros da URL
"op_type": "NOVO", (String)
"legal_rep": false (Boolean)
Observações:
- É necessário definir dentro de "op_type": "NOVO" para fluxo INSS.
- O parâmetro "legal_rep": deve ser definido como true se existir um representante legal, ou false caso contrário.
- Exemplo de Sucesso (200 OK)
[
{
"id": 12,
"cod_produto": 201,
"cod_tabela": "201002",
"name": "INSS NOVO SEGURO BÁSICO",
"eligibility": null,
"vig_inicial": "2025-04-28T16:58:00",
"vig_final": null,
"start": 0.0,
"end": 50000.0,
"number_of_installments": [
"84",
"96"
],
"identificador": "50-250",
"amount": 32.0,
"amount_type": "percentage",
"operation_type": "NOVO",
"legal_representative": false
},
{
"id": 13,
"cod_produto": 202,
"cod_tabela": "202004",
"name": "INSS NOVO SEGURO STANDARD",
"eligibility": null,
"vig_inicial": "2025-04-28T16:58:00",
"vig_final": null,
"start": 0.0,
"end": 30000.0,
"number_of_installments": [
"84",
"96"
],
"identificador": "50-250",
"amount": 32.0,
"amount_type": "percentage",
"operation_type": "NOVO",
"legal_representative": false
},
{
"id": 14,
"cod_produto": 203,
"cod_tabela": "203003",
"name": "INSS NOVO SEGURO MAIS",
"eligibility": null,
"vig_inicial": "2025-04-28T16:58:00",
"vig_final": null,
"start": 0.0,
"end": 16000.0,
"number_of_installments": [
"84",
"96"
],
"identificador": "50-250",
"amount": 32.0,
"amount_type": "percentage",
"operation_type": "NOVO",
"legal_representative": false
},
{
"id": 15,
"cod_produto": 203,
"cod_tabela": "203004",
"name": "INSS NOVO SEGURO MAIS",
"eligibility": null,
"vig_inicial": "2025-04-28T16:58:00",
"vig_final": null,
"start": 16000.0,
"end": 20000.0,
"number_of_installments": [
"84"
],
"identificador": "50-250",
"amount": 32.0,
"amount_type": "percentage",
"operation_type": "NOVO",
"legal_representative": false
},
{
"id": 16,
"cod_produto": 203,
"cod_tabela": "203005",
"name": "INSS NOVO SEGURO MAIS",
"eligibility": null,
"vig_inicial": "2025-04-28T16:58:00",
"vig_final": null,
"start": 16000.0,
"end": 20000.0,
"number_of_installments": [
"96"
],
"identificador": "50-250",
"amount": 32.0,
"amount_type": "percentage",
"operation_type": "NOVO",
"legal_representative": false
},
{
"id": 17,
"cod_produto": 200,
"cod_tabela": "200004",
"name": "INSS NOVO",
"eligibility": null,
"vig_inicial": "2025-05-19T00:00:00",
"vig_final": null,
"start": 0.0,
"end": 50000.0,
"number_of_installments": [
"84"
],
"identificador": "50-250",
"amount": 32.0,
"amount_type": "percentage",
"operation_type": "NOVO",
"legal_representative": false
},
{
"id": 18,
"cod_produto": 200,
"cod_tabela": "200005",
"name": "INSS NOVO",
"eligibility": null,
"vig_inicial": "2025-05-19T00:00:00",
"vig_final": null,
"start": 0.0,
"end": 50000.0,
"number_of_installments": [
"96"
],
"identificador": "50-250",
"amount": 32.0,
"amount_type": "percentage",
"operation_type": "NOVO",
"legal_representative": false
}
]
Comentários