-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflutterwave-create-customer-example.json
More file actions
41 lines (41 loc) · 1.09 KB
/
flutterwave-create-customer-example.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"request": {
"method": "POST",
"url": "https://api.flutterwave.cloud/f4b/production/customers",
"headers": {
"Authorization": "Bearer eyJhbGciOiJSUzI1NiIs...",
"Content-Type": "application/json",
"X-Idempotency-Key": "0c0d3a7e-9b88-4c4d-9b3e-7b4c5e6a1d23"
},
"body": {
"email": "ada.lovelace@example.com",
"name": {
"first": "Ada",
"last": "Lovelace"
},
"phone": {
"country_code": "234",
"number": "8012345678"
},
"address": {
"city": "Lagos",
"country": "NG",
"line1": "12 Marina Road"
}
}
},
"response": {
"status": 201,
"body": {
"status": "success",
"data": {
"id": "cus_4fa9c2b5-1a82-4b6e-9c5b-2c1f7d8e9a01",
"email": "ada.lovelace@example.com",
"name": { "first": "Ada", "last": "Lovelace" },
"phone": { "country_code": "234", "number": "8012345678" },
"address": { "city": "Lagos", "country": "NG", "line1": "12 Marina Road" },
"created_datetime": "2026-05-24T15:32:01.402Z"
}
}
}
}