curl --request POST \
  --url https://api.bmpdigital.moneyp.dev.br/Proposta/IncluirDocumento \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'IdempotencyKey: <idempotencykey>' \
  --data '{
  "dto": {
    "codigoProposta": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "codigoOperacao": "<string>",
    "numeroProposta": 123
  },
  "documento": {
    "codigo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "tipoDocumento": 123,
    "nomeArquivo": "<string>",
    "extensao": "<string>",
    "dtValidade": "2023-11-07T05:31:56Z",
    "arquivo": "aSDinaTvuI8gbWludGxpZnk="
  }
}'
{
  "msg": "<string>",
  "hasError": true,
  "messages": [
    {
      "messageType": 1,
      "code": "<string>",
      "context": "<string>",
      "description": "<string>",
      "field": "<string>"
    }
  ],
  "codigo": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "tipoDocumento": 123,
  "nomeArquivo": "<string>",
  "extensao": "<string>",
  "dtValidade": "2023-11-07T05:31:56Z",
  "arquivo": "aSDinaTvuI8gbWludGxpZnk="
}
Using the proposal finalization endpoint is mandatory before proceeding.

Through this endpoint, the partner executes the proposal signature via Certification Authority. Examples of certification authorities include Docusign, QCertifica, Clicksign, Finanblue, among others. The signing process begins when the partner downloads the CCB without the “MODEL” watermark from our portal, then signs it through a certification authority, and finally attaches the signed CCB back to the proposal.

Authorizations

Authorization
string
header
required

Informe o token

Headers

IdempotencyKey
string
required

Body

dto
object
documento
object

Response

200
text/plain
OK
msg
string | null
hasError
boolean
messages
object[] | null
codigo
string | null
tipoDocumento
integer
nomeArquivo
string | null
extensao
string | null
dtValidade
string | null
arquivo
string | null

Was this page helpful?