Skip to content

Commit c1d0e4e

Browse files
author
github-actions
committed
Update openapi.json from REST API workflow 2026-04-29T08:41:32Z
1 parent 81b83a5 commit c1d0e4e

1 file changed

Lines changed: 128 additions & 0 deletions

File tree

openapi.json

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1469,6 +1469,134 @@
14691469
}
14701470
}
14711471
},
1472+
"/api/v2/bounces/by/campaign": {
1473+
"get": {
1474+
"tags": [
1475+
"bounces"
1476+
],
1477+
"summary": "Gets a list of bounce counts by campaign.",
1478+
"description": "🚧 **Status: Beta** – This method is under development. Avoid using in production. Returns a JSON list of bounce counts by campaign.",
1479+
"operationId": "a2de96a367d951e9047630b863fbc756",
1480+
"parameters": [
1481+
{
1482+
"name": "php-auth-pw",
1483+
"in": "header",
1484+
"description": "Session key obtained from login",
1485+
"required": true,
1486+
"schema": {
1487+
"type": "string"
1488+
}
1489+
}
1490+
],
1491+
"responses": {
1492+
"200": {
1493+
"description": "Success",
1494+
"content": {
1495+
"application/json": {
1496+
"schema": {
1497+
"type": "array",
1498+
"items": {
1499+
"properties": {
1500+
"message_id": {
1501+
"type": "integer",
1502+
"example": 1
1503+
},
1504+
"subject": {
1505+
"type": "string",
1506+
"example": "System"
1507+
},
1508+
"total_bounces": {
1509+
"type": "integer",
1510+
"example": 3
1511+
}
1512+
},
1513+
"type": "object"
1514+
}
1515+
}
1516+
}
1517+
}
1518+
},
1519+
"403": {
1520+
"description": "Failure",
1521+
"content": {
1522+
"application/json": {
1523+
"schema": {
1524+
"$ref": "#/components/schemas/UnauthorizedResponse"
1525+
}
1526+
}
1527+
}
1528+
}
1529+
}
1530+
}
1531+
},
1532+
"/api/v2/bounces/by/subscriber": {
1533+
"get": {
1534+
"tags": [
1535+
"bounces"
1536+
],
1537+
"summary": "Gets a list of bounce counts by subscriber.",
1538+
"description": "🚧 **Status: Beta** – This method is under development. Avoid using in production. Returns a JSON list of bounce counts by subscriber.",
1539+
"operationId": "e914619969016f6d3ec3da6b645b5ff3",
1540+
"parameters": [
1541+
{
1542+
"name": "php-auth-pw",
1543+
"in": "header",
1544+
"description": "Session key obtained from login",
1545+
"required": true,
1546+
"schema": {
1547+
"type": "string"
1548+
}
1549+
}
1550+
],
1551+
"responses": {
1552+
"200": {
1553+
"description": "Success",
1554+
"content": {
1555+
"application/json": {
1556+
"schema": {
1557+
"type": "array",
1558+
"items": {
1559+
"properties": {
1560+
"subscriber_id": {
1561+
"type": "integer",
1562+
"example": 1
1563+
},
1564+
"email": {
1565+
"type": "string",
1566+
"example": "example@email.com"
1567+
},
1568+
"confirmed": {
1569+
"type": "boolean",
1570+
"example": true
1571+
},
1572+
"blacklisted": {
1573+
"type": "boolean",
1574+
"example": true
1575+
},
1576+
"total_bounces": {
1577+
"type": "integer",
1578+
"example": 3
1579+
}
1580+
},
1581+
"type": "object"
1582+
}
1583+
}
1584+
}
1585+
}
1586+
},
1587+
"403": {
1588+
"description": "Failure",
1589+
"content": {
1590+
"application/json": {
1591+
"schema": {
1592+
"$ref": "#/components/schemas/UnauthorizedResponse"
1593+
}
1594+
}
1595+
}
1596+
}
1597+
}
1598+
}
1599+
},
14721600
"/api/v2/bounces/regex": {
14731601
"get": {
14741602
"tags": [

0 commit comments

Comments
 (0)