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
description: "Request creation workflows and configuration for invoices and payment collection"
4
+
---
5
+
6
+
## Overview
7
+
8
+
Request creation forms the foundation of Request Network operations, enabling structured payment collection through invoice generation and payment request workflows.
9
+
10
+
## Request Types
11
+
12
+
<CardGroupcols={2}>
13
+
<Cardtitle="Invoice Requests"icon="file-invoice">
14
+
Traditional invoicing with payee details
15
+
</Card>
16
+
17
+
<Cardtitle="Payment Requests"icon="money-bill">
18
+
Direct payment collection workflows
19
+
</Card>
20
+
</CardGroup>
21
+
22
+
## How It Works
23
+
24
+
```mermaid
25
+
graph TD
26
+
A[Define Request] --> B[Select Payment Network]
27
+
B --> C[Configure Properties]
28
+
C --> D[Store on IPFS]
29
+
D --> E[Index on Blockchain]
30
+
E --> F[Generate Request ID]
31
+
```
32
+
33
+
**Creation Process:**
34
+
1.**Define:** Set payee, payer, amount, and currency details
35
+
2.**Configure:** Choose payment network and accepted tokens
36
+
3.**Store:** Decentralized storage on IPFS
37
+
4.**Index:** Blockchain indexing for discovery
38
+
5.**Track:** Real-time status monitoring
39
+
40
+
## Request Properties
41
+
42
+
### Core Information
43
+
-**Payee:** Request creator/recipient address
44
+
-**Payer:** Payment sender address (optional)
45
+
-**Amount:** Payment amount and currency
46
+
-**Due Date:** Payment deadline (optional)
47
+
48
+
### Payment Configuration
49
+
-**Payment Network:** ERC20, ETH, or specialized networks
description: "Request status monitoring, lifecycle management, and information retrieval"
4
+
---
5
+
6
+
## Overview
7
+
8
+
Query requests provides comprehensive request status monitoring and information retrieval, enabling real-time tracking of payment requests throughout their lifecycle.
Copy file name to clipboardExpand all lines: api-features/webhooks-events.mdx
+61-45Lines changed: 61 additions & 45 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,76 +5,92 @@ description: "Real-time notifications for payment lifecycle events and request s
5
5
6
6
## Overview
7
7
8
-
Webhooks provide real-time notifications when payment and request events occur, enabling immediate response to status changes without polling.
8
+
Webhooks provide real-time notifications when payment and request events occur, enabling immediate response to status changes without constant polling.
0 commit comments