-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-response.fixture.json
More file actions
36 lines (36 loc) · 893 Bytes
/
api-response.fixture.json
File metadata and controls
36 lines (36 loc) · 893 Bytes
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
{
"http": {
"method": "POST",
"url": "/api/v1/users",
"statusCode": 201,
"responseTimeMs": 56
},
"req": {
"id": "req_abc123",
"ip": "203.0.113.42",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)",
"headers": {
"content-type": "application/json",
"authorization": "Bearer [REDACTED]"
},
"body": {
"name": "Alice Smith",
"email": "alice@example.com",
"role": "user"
}
},
"res": {
"contentLength": 245,
"body": {
"id": "user_98765",
"name": "Alice Smith",
"email": "alice@example.com",
"role": "user",
"createdAt": "2025-11-22T14:45:12.300Z"
}
},
"service": {
"name": "user-service",
"version": "1.4.2"
}
}