You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A `clientID` and `secret` together is called an **API key**. An **API key** can be used to access resources on one deployment environment specifically, either `Test` or `Live`, but not both. Once you get the `clientID` and `secret` from Setu, use them to generate tokens to authorise all API requests.
10
+
A `clientID` and `secret` together is called an **API key**. An **API key** can be used to access resources on one deployment environment specifically, either `Test` or `Live`, but not both. Once you get the `clientID` and `secret` from Setu, use them to generate tokens to authorise all API requests.
11
11
12
12
<hrclass="primary" />
13
13
@@ -18,120 +18,119 @@ An API to generate access tokens, which are used to authorise any other API requ
18
18
**Request**
19
19
20
20
<table>
21
-
<tr>
22
-
<th>Host</th>
23
-
<td>
24
-
<code>https://accountservice.setu.co</code>
25
-
</td>
26
-
</tr>
27
-
<tr>
28
-
<th>Method</th>
29
-
<td>
30
-
<code>POST</code>
31
-
</td>
32
-
</tr>
33
-
<tr>
34
-
<th>Path</th>
35
-
<td>
36
-
<code>/v1/users/login</code>
37
-
</td>
38
-
</tr>
39
-
<tr>
40
-
<th>Header</th>
41
-
<td>
42
-
<code>client</code>— will be <code>bridge</code>
43
-
<br />
44
-
<code>Content-Type</code>— will be <code>application/json</code>
45
-
</td>
46
-
</tr>
21
+
<tr>
22
+
<th>Host</th>
23
+
<td>
24
+
<code>https://accountservice.setu.co</code>
25
+
</td>
26
+
</tr>
27
+
<tr>
28
+
<th>Method</th>
29
+
<td>
30
+
<code>POST</code>
31
+
</td>
32
+
</tr>
33
+
<tr>
34
+
<th>Path</th>
35
+
<td>
36
+
<code>/v1/users/login</code>
37
+
</td>
38
+
</tr>
39
+
<tr>
40
+
<th>Header</th>
41
+
<td>
42
+
<code>client</code>— will be <code>bridge</code>
43
+
<br />
44
+
<code>Content-Type</code>— will be <code>application/json</code>
💡 The <code>access_token</code> is valid for <code>300s</code>. The <code>access_token</code> can be <code>reused</code> any number of times within its expiry, so it is advised to cache the token.
103
+
💡 The <code>access_token</code> is valid for <code>300s</code>. The{""}
104
+
<code>access_token</code> can be <code>reused</code> any number of times
105
+
within its expiry, so it is advised to cache the token.
105
106
</Callout>
106
107
107
-
<br/>
108
+
<br/>
108
109
109
110
###### How to use the access token
110
111
111
-
-Once you have a valid token, you can use it to authorise an API calls made to Setu, by setting the `Authorization` request header as `Bearer <access_token>`.
112
-
-To get the new token, call the same `login` API at the 4th minute of token expiry and get the new token for the further API calls.
112
+
- Once you have a valid token, you can use it to authorise an API calls made to Setu, by setting the `Authorization` request header as `Bearer <access_token>`.
113
+
- To get the new token, call the same `login` API at the 4th minute of token expiry and get the new token for the further API calls.
Copy file name to clipboardExpand all lines: content/payments/umap/api-integration/aggregators.mdx
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
sidebar_title: Aggregators
3
-
page_title: UMAP - API integration for aggregators
3
+
page_title: UPI Setu - API integration for aggregators
4
4
order: 1
5
5
visible_in_sidebar: true
6
6
---
@@ -16,18 +16,18 @@ visible_in_sidebar: true
16
16
17
17
<hrclass="primary" />
18
18
19
-
Once you have been on-boarded on to Bridge as an aggregator and business formalities have been completed, you can proceed to integrate UMAP APIs with your internal systems. First, you have to create a merchant and then enable products that the merchant can use.
19
+
Once you have been on-boarded on to Bridge as an aggregator and business formalities have been completed, you can proceed to integrate UPI Setu APIs with your internal systems. First, you have to create a merchant and then enable products that the merchant can use.
20
20
21
21
<hrclass="primary" />
22
22
23
23
#### Step 1 — Configure a merchant
24
24
25
-
As an aggregator on UMAP, you have to first create a merchant by providing their business details and creating a VPA (which associates them to you, the aggregator). After this, you can enable UPI products for the merchant.
25
+
As an aggregator on UPI Setu, you have to first create a merchant by providing their business details and creating a VPA (which associates them to you, the aggregator). After this, you can enable UPI products for the merchant.
Copy file name to clipboardExpand all lines: content/payments/umap/api-integration/merchants.mdx
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
sidebar_title: Merchants
3
-
page_title: UMAP - API integration for merchants
3
+
page_title: UPI Setu - API integration for merchants
4
4
order: 2
5
5
visible_in_sidebar: true
6
6
---
@@ -16,9 +16,9 @@ visible_in_sidebar: true
16
16
17
17
<hrclass="primary" />
18
18
19
-
#### What can you do with UMAP?
19
+
#### What can you do with UPI Setu?
20
20
21
-
Once you have on-boarded onto UMAP as a merchant, and have your API credentials, the next step is to choose the right product for your use case. Below are some example scenarios to help you understand these products better—
21
+
Once you have on-boarded onto UPI Setu as a merchant, and have your API credentials, the next step is to choose the right product for your use case. Below are some example scenarios to help you understand these products better—
Copy file name to clipboardExpand all lines: content/payments/umap/mandates.mdx
+38-17
Original file line number
Diff line number
Diff line change
@@ -7,35 +7,56 @@ visible_in_sidebar: true
7
7
8
8
# UPI mandates
9
9
10
-
UPI mandates is a recurring payments product built on the same rails of UPI which enables businesses to create subscriptions or one-time block based payments seamlessly via the user's favourite UPI app.
10
+
UPI mandates is a recurring payments product built on the same rails of UPI which enables businesses to create subscriptions or one-time block based payments seamlessly via the user's favourite UPI app.
11
11
12
12
### What can you do with UPI mandates?
13
-
Choose one or more of our products under the UMAP mandates stack to—
14
-
* Enable limited stock purchases like IPO investments on your wealth app
15
-
* Create seamless subcsriptions for your services directly from UPI apps
16
-
* Reimagine **cash on delivery** or **try and buy** with single block multi debits
13
+
14
+
Choose one or more of our products under the UPI Setu mandates stack to—
15
+
16
+
- Enable limited stock purchases like IPO investments on your wealth app
17
+
- Create seamless subcsriptions for your services directly from UPI apps
18
+
- Reimagine **cash on delivery** or **try and buy** with single block multi debits
0 commit comments