curl --request POST \
  --url https://api.bmpdigital.moneyp.dev.br/Proposta/SalvarLancamento \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'IdempotencyKey: <idempotencykey>' \
  --data '{
  "dto": {
    "codigoProposta": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "codigoOperacao": "<string>",
    "numeroProposta": 123
  },
  "lancamentos": [
    {
      "campoID": "<string>",
      "vlrTransacao": 123,
      "dtPagamento": "2023-11-07T05:31:56Z",
      "linhaDigitavel": "<string>",
      "codigoBanco": 123,
      "numeroBanco": "<string>",
      "tipoConta": 123,
      "agencia": "<string>",
      "agenciaDig": "<string>",
      "conta": "<string>",
      "contaDig": "<string>",
      "documentoFederal": "<string>",
      "nomePagamento": "<string>",
      "documentoFederalCedente": "<string>",
      "nomeCedente": "<string>"
    }
  ],
  "parametros": [
    {
      "nome": "<string>",
      "valor": "<string>"
    }
  ]
}'
{
  "msg": "<string>",
  "hasError": true,
  "messages": [
    {
      "messageType": 1,
      "code": "<string>",
      "context": "<string>",
      "description": "<string>",
      "field": "<string>"
    }
  ],
  "parametros": [
    {
      "nome": "<string>",
      "valor": "<string>"
    }
  ]
}

Through this endpoint, the partner includes a record of a launch (split), related to the payment of titles and transfer of values.

Authorizations

Authorization
string
header
required

Informe o token

Headers

IdempotencyKey
string
required

Body

dto
object
lancamentos
object[] | null
parametros
object[] | null

Response

200
text/plain
OK
msg
string | null
hasError
boolean
messages
object[] | null
parametros
object[] | null

Was this page helpful?