API References
Purchase Application
POST
https://banking.danabijak.fintech-market.id/client_api/v1/partner/accounts/{account_id}/purchase_applications
Create a new Purchase Application
Path Parameters
Name
Type
Description
account_id
string
UUID to get account by
Headers
Name
Type
Description
x-organization
string
danabijak
x-branch
string
digital_micro_id
Request Body
Name
Type
Description
success_url
string
abort_url
string
amount
string
name
string
description
string
currency
string
locale
string
reference_number
string
unique_id
string
product_key
string
{
"data": {
"success_url": "https://fintech-market.com",
"abort_url": "https://fintech-market.com",
"amount": 100,
"name": "Euronics",
"description": "Application to buy a new iPhone",
"currency": "EUR",
"locale": "et",
"reference_number": "100022233",
"unique_id": null,
"product_key": "personalized_installment_loan",
"id": "694d3ad6-95ae-4c35-97bb-3625e83bb14c",
"status": "pending",
"created_at": "2020-01-01T12:00:00.000Z",
"expires_at": "2020-01-01T12:00:00.000Z",
"redirect_url": "https://fintech-market.com/purchases/694d3ad6-95ae-4c35-97bb-3625e83bb14c"
}
}
Purchase Application Status
GET
https://banking.danabijak.fintech-market.id/client_api/v1/partner/purchase_applications/{purchase_application_id}
Check purchase application status
Path Parameters
Name
Type
Description
purchase_application_id
string
UUID to get purchase application
{
"data": {
"success_url": "https://fintech-market.com",
"abort_url": "https://fintech-market.com",
"amount": 100,
"name": "Euronics",
"description": "Application to buy a new iPhone",
"currency": "EUR",
"locale": "et",
"reference_number": "100022233",
"unique_id": null,
"product_key": "personalized_installment_loan",
"id": "694d3ad6-95ae-4c35-97bb-3625e83bb14c",
"status": "pending",
"created_at": "2020-01-01T12:00:00.000Z",
"expires_at": "2020-01-01T12:00:00.000Z",
"redirect_url": "https://fintech-market.com/purchases/694d3ad6-95ae-4c35-97bb-3625e83bb14c"
}
}
Last updated
Was this helpful?