Creating an inbound operation

POST {{Environment_URL}}/v2/remittances/inbound

This route is responsible for creating the inbound operation after generating the quotation. You will need the quotation ID to proceed.

Request Body

Attribute
Description
Type
Required

quotationId

Previously generated inbound quotation identifier

String

Yes

accountId

Client account ID which will receive the inbound operation

String

Yes

clientCpf

Client document

String

Yes

inboundPaymentMethod

The payment method must be BANK_PATH

String

Yes

payment.method

Payment method must be TED

String

Yes

Headers

Name
Value
Description

authorization

Bearer <token>

Bearer Token obtained via sign-in

client-key

123ABCD456

Client authentication key, obtained via webhook.

Request

{
  "quotationId": "98918e024aef4cc5f623c89e15ac6983341dfc33",
  "accountId": "6973a19f2a7bbba96a8fd350",
  "clientCpf": "123.456.789-00",
  "inboundPaymentMethod": "BANK_PATH",
  "payment": {
    "method": "TED"
  }
}

Response

Last updated