-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathindex.yaml
More file actions
73 lines (72 loc) · 1.69 KB
/
index.yaml
File metadata and controls
73 lines (72 loc) · 1.69 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
post:
tags:
- Payment Request
summary: Create Payment Request
operationId: paymentRequest_create
requestBody:
content:
application/x-www-form-urlencoded:
schema:
$ref: '../../schemas/payment-request/Create.yaml'
application/json:
schema:
$ref: '../../schemas/payment-request/Create.yaml'
responses:
201:
$ref: '../../responses/created.yaml'
401:
$ref: '../../responses/unauthorized.yaml'
default:
description: Server error
get:
tags:
- Payment Request
summary: List Payment Request
operationId: paymentRequest_list
parameters:
- in: query
name: perPage
schema:
type: integer
description: Number of records to fetch per page
- in: query
name: page
schema:
type: integer
description: The section to retrieve
- in: query
name: customer
schema:
type: string
description: Customer ID
- in: query
name: status
schema:
type: string
description: Invoice status to filter
- in: query
name: currency
schema:
type: string
description: If your integration supports more than one currency, choose the one to filter
- in: query
name: from
schema:
type: string
format: date-time
description: The start date
- in: query
name: to
schema:
type: string
format: date-time
description: The end date
responses:
200:
$ref: '../../responses/ok.yaml'
401:
$ref: '../../responses/unauthorized.yaml'
404:
$ref: '../../responses/unauthorized.yaml'
default:
description: Server error