cURL
curl --request POST \
--url https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'IdempotencyKey: <idempotencykey>' \
--data '
{
"parametros": [
{
"nome": "<string>",
"valor": "<string>"
}
]
}
'import requests
url = "https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento"
payload = { "parametros": [
{
"nome": "<string>",
"valor": "<string>"
}
] }
headers = {
"IdempotencyKey": "<idempotencykey>",
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
IdempotencyKey: '<idempotencykey>',
Authorization: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({parametros: [{nome: '<string>', valor: '<string>'}]})
};
fetch('https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'parametros' => [
[
'nome' => '<string>',
'valor' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json",
"IdempotencyKey: <idempotencykey>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento"
payload := strings.NewReader("{\n \"parametros\": [\n {\n \"nome\": \"<string>\",\n \"valor\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("IdempotencyKey", "<idempotencykey>")
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento")
.header("IdempotencyKey", "<idempotencykey>")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"parametros\": [\n {\n \"nome\": \"<string>\",\n \"valor\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["IdempotencyKey"] = '<idempotencykey>'
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"parametros\": [\n {\n \"nome\": \"<string>\",\n \"valor\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"msg": "<string>",
"hasError": true,
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"results": [
{
"msg": "<string>",
"hasError": true,
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"codigo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"numero": 123
}
]
}{
"msg": "<string>",
"hasError": true,
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
]
}Garantias
35 - Salvar Proposta Garantia Bem Documento
cURL
curl --request POST \
--url https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--header 'IdempotencyKey: <idempotencykey>' \
--data '
{
"parametros": [
{
"nome": "<string>",
"valor": "<string>"
}
]
}
'import requests
url = "https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento"
payload = { "parametros": [
{
"nome": "<string>",
"valor": "<string>"
}
] }
headers = {
"IdempotencyKey": "<idempotencykey>",
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
IdempotencyKey: '<idempotencykey>',
Authorization: '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({parametros: [{nome: '<string>', valor: '<string>'}]})
};
fetch('https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'parametros' => [
[
'nome' => '<string>',
'valor' => '<string>'
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json",
"IdempotencyKey: <idempotencykey>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento"
payload := strings.NewReader("{\n \"parametros\": [\n {\n \"nome\": \"<string>\",\n \"valor\": \"<string>\"\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("IdempotencyKey", "<idempotencykey>")
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento")
.header("IdempotencyKey", "<idempotencykey>")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"parametros\": [\n {\n \"nome\": \"<string>\",\n \"valor\": \"<string>\"\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarPropostaGarantiaBemDocumento")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["IdempotencyKey"] = '<idempotencykey>'
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"parametros\": [\n {\n \"nome\": \"<string>\",\n \"valor\": \"<string>\"\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"msg": "<string>",
"hasError": true,
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"results": [
{
"msg": "<string>",
"hasError": true,
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
],
"codigo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"numero": 123
}
]
}{
"msg": "<string>",
"hasError": true,
"messages": [
{
"code": "<string>",
"context": "<string>",
"description": "<string>",
"field": "<string>"
}
]
}Por meio deste endpoint o parceiro inclui mais de um Bem do tipo móvel ou imóvel, como garantia para o valor financiado.
Mostrar Tabela TipoDocumento
Mostrar Tabela TipoDocumento
| ID | Descrição |
|---|---|
| 1 | Fotoidentificação Pessoa |
| 2 | Fotoidentificação Veículo |
| 3 | Fotoidentificação Maquinário |
| 4 | RG |
| 5 | CPF |
| 6 | Comprovante Endereço |
| 7 | Comprovante Renda |
| 8 | CNH |
| 9 | Carteira Reservista |
| 10 | Título Eleitor |
| 11 | Passaporte |
| 12 | Carteira Trabalho |
| 13 | Contrato Social |
| 14 | CNPJ |
| 15 | Extrato Bancário |
| 16 | Certidão Casamento |
| 17 | Certidão Divórcio |
| 18 | Certidão Óbito |
| 19 | Ata de Eleição |
| 20 | Procurações Públicas |
| 21 | Balanço Patrimonial com DRE |
| 22 | CCB |
| 23 | Protocolo |
| 24 | Balancete com DRE |
| 25 | Faturamento |
| 26 | Declaração IR |
| 27 | Nota Fiscal Garantia |
| 28 | Quitação de Garantia |
| 29 | Laudo Técnico |
| 30 | Certidão de Nascimento |
| 31 | Averbação de Divórcio |
| 40 | Documento Veículo (DUT) |
| 41 | Nota Fiscal Garantia Adicional |
| 42 | Orçamento |
| 50 | Nota Fiscal |
| 51 | Apólice de Seguro |
| 52 | Nota Promissória |
| 53 | CRV/CRLV |
| 54 | Foto Veículo/Máquina |
| 55 | Ficha Cadastral |
| 56 | Consulta Bureau |
| 57 | Frota |
| 58 | Foto do Estabelecimento |
| 59 | Formulário de Cadastro |
| 60 | Contrato Prestação de Serviço |
| 61 | Documento Sócio |
| 62 | Dossiê de Análise |
| 63 | Contrato |
| 64 | Comprovante Despachante |
| 65 | Comprovante de Débito |
| 66 | Comprovante Crédito Cliente |
Autorizações
Informe o token
Cabeçalhos
Corpo
application/jsontext/jsonapplication/*+json
Esta página foi útil?
⌘I

