Get Form Data
GET/v2/international-disbursement/form-data
An endpoint to get form with all required fields to be completed to create the transactions, such as remittance purpose, source of fund, relationship with beneficiary, and the beneficiary’s bank account details
Request
Query Parameters
Country code using ISO 3166 (Alpha-3). You can choose multiple countries separate by comma. See supported Country ISO Codes.
Possible values: [C2C, C2B, B2B, B2C]
Transaction type information. Possible values are
Responses
- 200
- 401
- 422
Get Form Data response
- application/json
- Schema
- Example (from schema)
Schema
beneficiary_relationships
object
source_of_funds
object
remittance_purposes
object
banks
object
special_identifiers
object
nationality_countries
object
{
"country_iso_code": "GBR",
"currency_code": "GBP",
"beneficiary_relationships": {
"SELF": "Diri sendiri",
"BROTHER": "Saudara laki-laki",
"SISTER": "Saudara perempuan",
"SON": "Anak laki-laki",
"DAUGHTER": "Anak perempuan",
"NEPHEW": "Keponakan laki-laki",
"NIECE": "Keponakan perempuan",
"FATHER": "Ayah",
"MOTHER": "Ibu",
"UNCLE": "Paman",
"AUNT": "Bibi",
"COUSIN": "Sepupu",
"FATHER_IN_LAW": "Bapak mertua",
"MOTHER_IN_LAW": "Ibu mertua",
"BROTHER_IN_LAW": "Ipar laki-laki",
"SISTER_IN_LAW": "Ipar perempuan",
"GRAND_FATHER": "Kakek",
"GRAND_MOTHER": "Nenek",
"HUSBAND": "Suami",
"WIFE": "Istri",
"FRIEND": "Teman"
},
"source_of_funds": {
"BUSINESS": "Bisnis",
"SALARY": "Gaji",
"SAVINGS": "Tabungan",
"GIFT": "Hadiah"
},
"remittance_purposes": {
"FAMILY_SUPPORT": "Bantuan keluarga",
"SALARY_PAYMENT": "Pembayaran gaji"
},
"banks": {
"101": "Standard Chartered Bank",
"102": "Bank Something"
},
"special_identifiers": {
"sort_code": "string"
},
"regions": {},
"nationality_countries": {
"iso_code": "AFG",
"name": "Afghanistan",
"country_code": "AF"
}
}
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": "Unauthorized",
"message": "Your request was made with invalid credentials.",
"status": 401
}
Sample error response when transaction_type is invalid
- application/json; charset=UTF-8
- Schema
- Example (from schema)
Schema
Array [
]
errors
object[]
{
"code": "VALIDATION_ERROR",
"errors": [
{
"attribute": "transaction_type",
"code": 1069,
"message": "Param transaction_type is invalid"
}
]
}