-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit_1.md
60 lines (46 loc) · 1.3 KB
/
init_1.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
## INIT
**Purpose:** Signals the borrower's intent to proceed with the loan and provides fulfillment details for sanction requirements.
**Endpoint:** /init
**Method:** POST
**Description:** The buyer app uses this endpoint to inform the FI that the borrower intends to proceed with the loan and to provide details about the fulfillment of pre-sanction requirements, including KYC, document submission, and acceptance of operational limits.
### Request Body
``` json
{
"context": {
"domain": "ONDC:FIS12",
"version": "2.1.0",
"action": "init",
"bap_id": "bap.credit.becknprotocol.io",
"bap_uri": "https://bap.credit.becknprotocol.io/",
"transaction_id": "a9aaecca-10b7-4d19-b640-b047a7d62196",
"message_id": "bb579fb8-cb82-4824-be12-fcbc405b6608",
"ttl": "PT30M",
"timestamp": "2023-05-25T05:23:03.443Z",
"bpp_id": "bpp.credit.becknprotocol.org",
"bpp_uri": "https://bpp.credit.becknprotocol.org"
},
"message": {
"order": {
"ref_order_ids": "ITEM_ID_WORKING_CAPITAL_LOAN",
"price": {
"currency": "INR",
"value": "20000"
}
}
}
}
```
### Response
```json
{
"message": {
"ack": {
"status": "ACK"
}
}
}
```
---
<p align="center">
[← Back to Previous File](on_confirm.md) | [Next File →](on_init_1.md)
</p>