Skip to content

Commit 6003a0c

Browse files
author
github-actions
committed
Update REST API documentation Wed Mar 5 18:23:48 UTC 2025
1 parent 5d85b7e commit 6003a0c

File tree

1 file changed

+81
-23
lines changed

1 file changed

+81
-23
lines changed

docs/restapi.json

+81-23
Original file line numberDiff line numberDiff line change
@@ -292,42 +292,71 @@
292292
"type": "array",
293293
"items": {
294294
"properties": {
295-
"creation_date": {
296-
"type": "string",
297-
"format": "date-time",
298-
"example": "2016-07-22T15:01:17+00:00"
295+
"id": {
296+
"type": "integer",
297+
"example": 1
299298
},
300299
"email": {
301300
"type": "string",
302-
"example": "oliver@example.com"
301+
"example": "subscriber@example.com"
302+
},
303+
"creation_date": {
304+
"type": "string",
305+
"format": "date-time",
306+
"example": "2023-01-01T12:00:00Z"
303307
},
304308
"confirmed": {
305309
"type": "boolean",
306310
"example": true
307311
},
308312
"blacklisted": {
309313
"type": "boolean",
310-
"example": true
314+
"example": false
311315
},
312316
"bounce_count": {
313317
"type": "integer",
314-
"example": 17
318+
"example": 0
315319
},
316320
"unique_id": {
317321
"type": "string",
318-
"example": "95feb7fe7e06e6c11ca8d0c48cb46e89"
322+
"example": "abc123"
319323
},
320324
"html_email": {
321325
"type": "boolean",
322326
"example": true
323327
},
324328
"disabled": {
325329
"type": "boolean",
326-
"example": true
330+
"example": false
327331
},
328-
"id": {
329-
"type": "integer",
330-
"example": 1
332+
"subscribedLists": {
333+
"type": "array",
334+
"items": {
335+
"properties": {
336+
"id": {
337+
"type": "integer",
338+
"example": 2
339+
},
340+
"name": {
341+
"type": "string",
342+
"example": "Newsletter"
343+
},
344+
"description": {
345+
"type": "string",
346+
"example": "Monthly updates"
347+
},
348+
"creation_date": {
349+
"type": "string",
350+
"format": "date-time",
351+
"example": "2022-12-01T10:00:00Z"
352+
},
353+
"public": {
354+
"type": "boolean",
355+
"example": true
356+
}
357+
},
358+
"type": "object"
359+
}
331360
}
332361
},
333362
"type": "object"
@@ -743,42 +772,71 @@
743772
"application/json": {
744773
"schema": {
745774
"properties": {
746-
"creation_date": {
747-
"type": "string",
748-
"format": "date-time",
749-
"example": "2017-12-16T18:44:27+00:00"
775+
"id": {
776+
"type": "integer",
777+
"example": 1
750778
},
751779
"email": {
752780
"type": "string",
753781
"example": "subscriber@example.com"
754782
},
783+
"creation_date": {
784+
"type": "string",
785+
"format": "date-time",
786+
"example": "2023-01-01T12:00:00Z"
787+
},
755788
"confirmed": {
756789
"type": "boolean",
757-
"example": false
790+
"example": true
758791
},
759792
"blacklisted": {
760793
"type": "boolean",
761794
"example": false
762795
},
763-
"bounced": {
796+
"bounce_count": {
764797
"type": "integer",
765798
"example": 0
766799
},
767800
"unique_id": {
768801
"type": "string",
769-
"example": "69f4e92cf50eafca9627f35704f030f4"
802+
"example": "abc123"
770803
},
771804
"html_email": {
772805
"type": "boolean",
773-
"example": false
806+
"example": true
774807
},
775808
"disabled": {
776809
"type": "boolean",
777810
"example": false
778811
},
779-
"id": {
780-
"type": "integer",
781-
"example": 1
812+
"subscribedLists": {
813+
"type": "array",
814+
"items": {
815+
"properties": {
816+
"id": {
817+
"type": "integer",
818+
"example": 2
819+
},
820+
"name": {
821+
"type": "string",
822+
"example": "Newsletter"
823+
},
824+
"description": {
825+
"type": "string",
826+
"example": "Monthly updates"
827+
},
828+
"creation_date": {
829+
"type": "string",
830+
"format": "date-time",
831+
"example": "2022-12-01T10:00:00Z"
832+
},
833+
"public": {
834+
"type": "boolean",
835+
"example": true
836+
}
837+
},
838+
"type": "object"
839+
}
782840
}
783841
},
784842
"type": "object"

0 commit comments

Comments
 (0)