CFX Pay
  1. Hardcode integration
CFX Pay
  • Introduction
  • Integration Types
  • API Standards
  • Status Flow
  • Lists
  • SPEI Mexico
  • PIX Brazil
  • Basic Integration
    • checkout_create
      POST
  • Intermediary Integration
    • checkout_form
      POST
  • Hardcode integration
    • balance_merchant
      GET
    • payment_type
      GET
    • payin_create
      POST
    • payin_check
      GET
    • payout_create
      POST
    • payout_check
      GET
  • Notification
    • How it works
  1. Hardcode integration

payout_check

GET
https://api.cfxpay.io/{{param_environment}}/{{param_company}}/gateway/payout_check/{transaction_id}
Last modified:2024-02-29 17:16:57
Check the payout by transaction ID.

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Path Params

Header Params

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 -g --request GET 'https://api.cfxpay.io/{{param_environment}}/{{param_company}}/gateway/payout_check/55616f79-0bdd-42f2-8943-168ae7659001' \
--header 'Language: PORTUGUESE_BR' \
--header 'Authorization: Basic Og=='

Responses

🟢200Success
application/json
Body

Example
{
    "server": "01",
    "code": 0,
    "message": "Success",
    "identifier": "1709226159023785910",
    "type": "LOG_INFO",
    "caller": "_gateway_payout_check",
    "caller_id": "1709226158846936719",
    "translation_message": "Sucesso",
    "gateway": [
        {
            "transaction_id": "1709225790684624139",
            "merchant_id": "cfxpaygateway_merchant",
            "tracking_id": "55616f79-0bdd-42f2-8943-168ae7659001",
            "api_transaction_id": "6622708",
            "payment_type_id": "da29df38dd248d066b7656473a6da4f8",
            "callback_url": "https://api.cfxpay.io/webhook_test",
            "country": "BR",
            "source": "WITHDRAW",
            "origin": "PROVIDER_01",
            "status": "WAITING",
            "currency_symbol": "USD",
            "amount": "10.00",
            "amount_fee": "0.00",
            "amount_final": "10.00",
            "customer": {
                "first_name": "Satoshi",
                "last_name": "Nakamoto",
                "document_type": "1",
                "document_number": "28276469686",
                "email": "dev@cfxpay.io",
                "country": "BR",
                "account_agency_number": "-",
                "account_number": "-",
                "account_type_code": "-",
                "account_pix_key": "28276469687",
                "account_bank_code": "-"
            }
        }
    ]
}
🟠400Record Not Found
🟠400Wrong Params
Modified at 2024-02-29 17:16:57
Previous
payout_create
Next
How it works
Built with