Get International Transfer
GET/v2/international-disbursement/:transaction_id
An endpoint to get a specific international transfer transaction.
Request
Path Parameters
transaction_id stringrequired
Flip’s transaction id
Responses
- 200
- 401
- 404
Create International Disbursement response
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
id integer
user_id integer
company_id integer
exchange_rate integer
fee integer
amount integer
source_country string
destination_country string
beneficiary_amount integer
beneficiary_currency_code string
status string
timestamp string
time_served string
created_from string
receipt string
transaction_type string
idempotency_key string
beneficiary
object
id_number string
id_expiration_date string
full_name string
bank_account_number string
bank string
email string
msisdn string
nationality string
country string
province string
city string
address string
postal_code string
relationship string
source_of_funds string
remittance_purpose string
iban string
swift_bic_code string
sort_code string
ifs_code string
bsb_number string
branch_number string
document_reference_number string
registration_number string
sender
object
name string
place_of_birth integer
date_of_birth string
address string
identity_type string
identity_number string
country integer
job string
email string
city string
phone_number string
reason string
{
"id": 11,
"user_id": 12345,
"company_id": 123456,
"exchange_rate": 19000.55,
"fee": 88888,
"amount": 1000000,
"source_country": "IDN",
"destination_country": "GBR",
"beneficiary_amount": 52.63,
"beneficiary_currency_code": "GBP",
"status": "PENDING",
"timestamp": "2021-12-02 15:27:24",
"time_served": "(not set)",
"created_from": "API",
"receipt": "someurl.png",
"transaction_type": "C2C",
"idempotency_key": "idem-1",
"beneficiary": {
"id_number": "44943733088",
"id_expiration_date": "2022-11-29",
"full_name": "John Smith",
"bank_account_number": "1122333300",
"bank": "Allica Bank",
"email": "emial@email.com",
"msisdn": "09584008222",
"nationality": "IDN",
"country": "GBR",
"province": "United Kingdom",
"city": "Manchester",
"address": "Mosley St Manchester",
"postal_code": "M2",
"relationship": "SON",
"source_of_funds": "BUSINESS",
"remittance_purpose": "EDUCATION",
"iban": null,
"swift_bic_code": null,
"sort_code": "506967",
"ifs_code": null,
"bsb_number": null,
"branch_number": null,
"document_reference_number": null,
"registration_number": null
},
"sender": {
"name": "John Doe",
"place_of_birth": 100230,
"date_of_birth": "1963-12-01",
"address": "Some Address Street 123",
"identity_type": "nat_id",
"identity_number": "1234789012347890",
"country": 100252,
"job": "entrepreneur",
"email": "sender@mail.com",
"city": "Sender City",
"phone_number": "+628123456789\""
},
"reason": ""
}
Sample response when Your Flip api secret key value for Authorization is missing or invalid
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
name string
message string
status integer
{
"name": "Unauthorized",
"message": "Your request was made with invalid credentials.",
"status": 401
}
Response if you put invalid transaction ID
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
name string
message string
status integer
{
"name": "Not Found",
"message": "Object not found",
"status": 404
}
Loading...