Ledger API
  1. Developer
Ledger API
  • Agent
    • Update Notification URL
      POST
    • Get current agent principal
      GET
  • Ledger
    • Activate Ledger
      POST
    • List All Ledgers
      GET
    • Get Ledgers
      GET
    • Create Ledger
      POST
    • Get Customer Ledgers
      GET
    • Create Customer Ledger
      POST
    • Create Customer Multi-currency Ledger
      POST
    • Get Ledger by Id
      GET
    • Delete Ledger
      DELETE
    • Generate and Export Ledger Statement (PDF)
      GET
  • Transaction
    • Create Transaction
      POST
    • Get Ipn Status
      POST
    • Execute Transaction
      POST
    • Cancel Transaction
      POST
    • Search Transactions
      POST
    • Create FX Quote
      POST
    • Get Transaction by Id
      GET
    • List POP Codes (SWIFT Related)
      GET
    • Get FX quote
      GET
    • Get SWIFT Transaction Raw Data
      GET
  • Customer
    • Get Customers
      GET
    • Create Customer
      POST
    • Update Customer
      POST
    • Update Customer Current Address
      POST
    • Get Customer by id
      GET
  • Beneficiary
    • Get Customer Beneficiaries
    • Create Customer Beneficiary
    • Get Beneficiaries
    • Create Agent Beneficiary
    • Beneficiary Update
    • Create Beneficiary Ledger
    • Beneficiary Update Address
    • Add Address For Beneficiary
    • Beneficiary validate account name(Confirmation of Payee)
    • Get Customer Beneficiary Ledgers by Beneficiary Id
    • Get Beneficiary by Id
    • Delete Beneficiary
    • Get Beneficiary Ledgers by Beneficiary Id
  • Beneficiary V2 (SWIFT)
    • Create Agent Beneficiary
    • Validate Payment Scheme Fields
    • Create Customer Beneficiary
    • List Payment Scheme Currencies
    • List Payment Scheme Countries
  • Lookup
    • List Industries
    • Deposit Transaction Reject Codes
    • List Corporation Types
    • Cancel Request Reject Codes
  • Developer
    • Send Status for Outgoing Payments
      POST
    • Send Incoming Payment
      POST
  • Bank Reference Data
    • Get banks by country
    • Get bank branches
  • Customer Director Management
    • Get Directors for Customer
    • Create Director for Customer
    • Update Director
    • Delete Director
  • Schemas
    • Schemas
      • UltimateParty
      • UltimateInfo
      • BankDetailExtraData
      • PasswordRecoveryCommand
      • SimulationPaymentStatusCommand
      • BankBranchReferenceData
      • CreateUpdateAgentDirectorCommand
      • AddressDTO
      • SimulationPaymentStatusPayload
      • BankReferenceData
      • BankDetailDTO
      • PartyInfo
      • LedgerDTO
      • SimulationAddress
      • AgentLedgerDTO
      • DirectorDTO
      • MonetaryAmount
      • SimulationPaymentsInCommand
      • TransactionCommand
      • SimulationPaymentsInPayload
      • FxQuoteDTO
      • TransactionDTO
      • TransactionCancelCommand
      • TransactionFilter
      • DefaultPageable
      • CreateFxQuoteCommand
      • AgentFxQuoteDTO
      • CreateLedgerCommand
      • CompanyDetails
      • ContactMigrationDetailsDTO
      • PersonDetails
      • SearchLedgerCommand
      • LedgerMultiDTO
      • UpdateIpnCommand
      • AgentDTO
      • CompanyDTO
      • ComplianceCredentialDTO
      • PhoneNumber
      • ApproveTransactionCommand
      • RejectTransactionCommand
      • CentrolinkManualTransactionCommand
      • ClearbankManualTransactionCommand
      • ManualBulkManualTransactionCommand
      • CreateAgentCustomerCommand
      • PersonDTO
      • ContactAddressDTO
      • CustomerDTO
      • UpdateAgentCustomerCommand
      • AddLedgerToBankDetailCommand
      • CreateBeneficiaryCommand
      • BeneficiaryDTO
      • UpdateAgentCustomerAddressCommand
      • UpdateBeneficiaryCommand
      • CreateBeneficiaryLedgerCommand
      • UpdateBeneficiaryAddressCommand
      • NameVerificationCommand
      • NameVerificationResponse
      • PaymentSchemeBeneficiaryCommand
      • PaymentSchemeFieldsCommand
      • GroupNode
      • PaymentSchemeFieldDTO
      • PaymentSchemeFieldsResponse
      • PaymentSchemeOptionDTO
      • PurposeOfPaymentCode
      • PurposeOfPaymentCodes
      • Principle
      • PaymentSchemeCurrencyDTO
      • PaymentSchemeCountryDTO
  1. Developer

Send Incoming Payment

POST
/v1/agents/payments/simulation/paymentsIn
TRANSACTION_APPROVAL

Request

Body Params application/json

Examples

Responses

🟢200OK
OK
This response does not have a body.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://sandbox-ledger.fingates.net/api/v1/agents/payments/simulation/paymentsIn' \
--header 'Content-Type: application/json' \
--data-raw '{
    "payment": {
        "creditor": {
            "account_number": "string",
            "sort_code": "string",
            "iban": "string",
            "name": "string",
            "bic": "string",
            "address": {
                "country_code": "GB",
                "city": "string",
                "street": "string",
                "postal_code": "string",
                "region": "string"
            }
        },
        "debtor": {
            "account_number": "string",
            "sort_code": "string",
            "iban": "string",
            "name": "string",
            "bic": "string",
            "address": {
                "country_code": "GB",
                "city": "string",
                "street": "string",
                "postal_code": "string",
                "region": "string"
            }
        },
        "amount": 0,
        "currency": "string",
        "purpose": "string",
        "reference": "string",
        "payment_scheme": "SEPA"
    }
}'
Modified at 2025-10-02 13:14:45
Previous
Send Status for Outgoing Payments
Next
Get banks by country
Built with