Cedar Partners API
  1. End to End (Fiat-to-Fiat)
Cedar Partners API
  • Introduction
  • Getting Started
    • Data Model
    • Transaction Lifecycle
    • Authentication
    • API Environments
    • Webhooks Configuration
  • Development Tools
    • API Debugging
    • Error Codes
    • File URLs
  • API Documentation
    • Information
      • Get Countries
      • Get Currencies
    • Merchants
      • Create Merchant
      • Update Merchant
      • Get Merchant by ID
      • Get Merchants with Pagination
    • Onboarding
      • Onboarding Lifecycle
      • Get Legal Agreements
      • Accept Legal Agreements
      • Submit Merchant Onboarding
    • Receiver Accounts
      • Create Receiver Account
      • Update Receiver Account
      • Get Receiver Account by ID
      • Get Receiver Accounts with Pagination
    • Transactions
      • Payout (Crypto-to-Fiat)
        • Calculate FX Rate
        • Create Payout Transaction
        • Get Payout Transaction by ID
        • Get Payout Transactions with Pagination
        • Approve Payout Transaction Quote
        • Approve Payout Transaction Deposit
        • Cancel Payout Transaction
      • End to End (Fiat-to-Fiat)
        • Calculate FX Rate
          POST
        • Create End to End Transaction
          POST
        • Get End to End Transaction by ID
          GET
        • Get End to End Transactions with Pagination
          GET
        • Approve End to End Transaction Quote
          POST
        • Approve End to End Transaction Deposit
          POST
        • Cancel End to End Transaction
          POST
      • Collections (Fiat-to-Fiat)
        • Calculate FX Rate
        • Create Collections Transaction
        • Get Collections Transaction by ID
        • Get Collections Transactions with Pagination
        • Approve Collections Transaction Quote
        • Approve Collections Transaction Deposit
        • Cancel Collections Transaction
      • Get Payout Confirmation by Transaction ID
        GET
    • Utilities
      • Upload File
  1. End to End (Fiat-to-Fiat)

Get End to End Transaction by ID

Live Partners API
https://partners-api.service.cedar.money/bpapi
Live Partners API
https://partners-api.service.cedar.money/bpapi
GET
https://partners-api.service.cedar.money/bpapi
/v1/sendf2f/{id}
Retrieve a single end-to-end transaction by its ID.

Request

Path Params
id
string 
required
The ID of the end-to-end transaction to retrieve
Example:
1
Header Params
x-api-key
string 
required
Example:
CEDAR_DEV_api_key_b0ab5b29-caa7-4fa6-9f94-51dbc145e9ed
x-api-secret
string 
required
Example:
CEDAR_DEV_api_secret_YtGc1iMIdVaSlE3yeBxS3Y6RY3j933s3YdTloLZjY9ar7T5vuVTGPovoRplo7PSZbYg2RLV9yJ3ZT7BctcxxPSR5pQpEMndj3EJB

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://partners-api.service.cedar.money/bpapi/v1/sendf2f/1' \
--header 'x-api-key: CEDAR_DEV_api_key_b0ab5b29-caa7-4fa6-9f94-51dbc145e9ed' \
--header 'x-api-secret: CEDAR_DEV_api_secret_YtGc1iMIdVaSlE3yeBxS3Y6RY3j933s3YdTloLZjY9ar7T5vuVTGPovoRplo7PSZbYg2RLV9yJ3ZT7BctcxxPSR5pQpEMndj3EJB'

Responses

🟢200OK
application/json
Body
businessRequestId
integer 
required
The payout transaction's ID
creationTime
integer 
required
The entity creation time in UNIX timestamp
lastUpdateTime
integer 
required
The entity last update time in UNIX timestamp
toAmount
string 
required
Payout amount to receiver account
fromAmount
string  | null 
optional
Deposit amount
purpose
enum<string> 
required
Transaction's purpose
Allowed values:
GOODS_PURCHASEDPAYMENT_OF_GOODSPAYMENT_OF_SERVICESOTHER_SERVICES
quoteApprovedDate
number  | null 
optional
The time the quote was approved by the client in UNIX timestamp
depositApprovedDate
number  | null 
optional
The time the deposit was approved by the client in UNIX timestamp
depositReceivedDate
number  | null 
optional
The time the deposit was received in the system in UNIX timestamp
depositReceivedAmount
string  | null 
optional
Deposit amount received by the system
payout
string  | null 
optional
Payout amount sent
fromCurrencySymbol
string 
required
Deposit currency
toCurrencySymbol
string 
required
Payout currency
fromBusinessId
integer 
required
The ID of the sending merchant
toBusinessExternalAccountId
integer 
required
The ID of the receiving merchant's receiver account for payout of the funds
toBusinessId
integer 
required
The ID of the receiving merchant
clientStatus
enum<string> 
required
The current status of the transaction
Allowed values:
NONEOnOff_PENDINGOnOff_AWAITING_QUOTE_APPROVALOnOff_AWAITING_DEPOSITOnOff_IN_PROGRESSOnOff_COMPLETEDOnOff_CANCELEDOnOff_EXPIRED
bankDetails
optional
The deposit details
Any of
accountNumber
string 
required
The deposit bank account number
nameOnAccount
string 
required
The name of the deposit bank account
bankName
string 
required
The deposit bank name
bankAddress
string 
required
The deposit bank full address
reference
string 
required
The deposit reference number
Example
{
    "businessRequestId": 1,
    "creationTime": 1741253004225,
    "lastUpdateTime": 1741253589556,
    "toAmount": "100000.0",
    "fromAmount": "160881501.15",
    "purpose": "GOODS_PURCHASED",
    "quoteApprovedDate": 1741253321781,
    "depositApprovedDate": 1741253579459,
    "depositReceivedDate": 1741253579459,
    "depositReceivedAmount": "160881501.15",
    "payout": "100000.0",
    "fromCurrencySymbol": "NGN",
    "toCurrencySymbol": "USD",
    "fromBusinessId": 1,
    "toBusinessExternalAccountId": 2,
    "toBusinessId": 2,
    "clientStatus": "OnOff_COMPLETED",
    "bankDetails": {
        "bankName": "Test Bank",
        "accountNumber": "1234567890",
        "reference": "Test Reference",
        "bankAddress": "123 Test St",
        "nameOnAccount": "Test Name"
    }
}
🟠400Error
Modified at 2025-03-06 09:29:24
Previous
Create End to End Transaction
Next
Get End to End Transactions with Pagination
Built with