Skip to content

Commit d44d18e

Browse files
author
github-actions
committed
Update REST API documentation Wed Jun 18 18:15:30 UTC 2025
1 parent c29795e commit d44d18e

File tree

1 file changed

+95
-87
lines changed

1 file changed

+95
-87
lines changed

restapi.json

Lines changed: 95 additions & 87 deletions
Original file line numberDiff line numberDiff line change
@@ -1868,26 +1868,7 @@
18681868
"content": {
18691869
"application/json": {
18701870
"schema": {
1871-
"properties": {
1872-
"domains": {
1873-
"type": "array",
1874-
"items": {
1875-
"properties": {
1876-
"domain": {
1877-
"type": "string"
1878-
},
1879-
"subscribers": {
1880-
"type": "integer"
1881-
}
1882-
},
1883-
"type": "object"
1884-
}
1885-
},
1886-
"total": {
1887-
"type": "integer"
1888-
}
1889-
},
1890-
"type": "object"
1871+
"$ref": "#/components/schemas/TopDomainStats"
18911872
}
18921873
}
18931874
}
@@ -1942,71 +1923,7 @@
19421923
"content": {
19431924
"application/json": {
19441925
"schema": {
1945-
"properties": {
1946-
"domains": {
1947-
"type": "array",
1948-
"items": {
1949-
"properties": {
1950-
"domain": {
1951-
"type": "string"
1952-
},
1953-
"confirmed": {
1954-
"properties": {
1955-
"count": {
1956-
"type": "integer"
1957-
},
1958-
"percentage": {
1959-
"type": "number",
1960-
"format": "float"
1961-
}
1962-
},
1963-
"type": "object"
1964-
},
1965-
"unconfirmed": {
1966-
"properties": {
1967-
"count": {
1968-
"type": "integer"
1969-
},
1970-
"percentage": {
1971-
"type": "number",
1972-
"format": "float"
1973-
}
1974-
},
1975-
"type": "object"
1976-
},
1977-
"blacklisted": {
1978-
"properties": {
1979-
"count": {
1980-
"type": "integer"
1981-
},
1982-
"percentage": {
1983-
"type": "number",
1984-
"format": "float"
1985-
}
1986-
},
1987-
"type": "object"
1988-
},
1989-
"total": {
1990-
"properties": {
1991-
"count": {
1992-
"type": "integer"
1993-
},
1994-
"percentage": {
1995-
"type": "number",
1996-
"format": "float"
1997-
}
1998-
},
1999-
"type": "object"
2000-
}
2001-
},
2002-
"type": "object"
2003-
}
2004-
},
2005-
"total": {
2006-
"type": "integer"
2007-
}
2008-
},
2009-
"type": "object"
1926+
"$ref": "#/components/schemas/DetailedDomainStats"
20101927
}
20111928
}
20121929
}
@@ -2062,11 +1979,11 @@
20621979
"application/json": {
20631980
"schema": {
20641981
"properties": {
2065-
"localParts": {
1982+
"local_parts": {
20661983
"type": "array",
20671984
"items": {
20681985
"properties": {
2069-
"localPart": {
1986+
"local_part": {
20701987
"type": "string"
20711988
},
20721989
"count": {
@@ -4466,6 +4383,97 @@
44664383
"type": "object",
44674384
"nullable": true
44684385
},
4386+
"TopDomainStats": {
4387+
"properties": {
4388+
"domains": {
4389+
"type": "array",
4390+
"items": {
4391+
"properties": {
4392+
"domain": {
4393+
"type": "string"
4394+
},
4395+
"subscribers": {
4396+
"type": "integer"
4397+
}
4398+
},
4399+
"type": "object"
4400+
}
4401+
},
4402+
"total": {
4403+
"type": "integer"
4404+
}
4405+
},
4406+
"type": "object",
4407+
"nullable": true
4408+
},
4409+
"DetailedDomainStats": {
4410+
"properties": {
4411+
"domains": {
4412+
"type": "array",
4413+
"items": {
4414+
"properties": {
4415+
"domain": {
4416+
"type": "string"
4417+
},
4418+
"confirmed": {
4419+
"properties": {
4420+
"count": {
4421+
"type": "integer"
4422+
},
4423+
"percentage": {
4424+
"type": "number",
4425+
"format": "float"
4426+
}
4427+
},
4428+
"type": "object"
4429+
},
4430+
"unconfirmed": {
4431+
"properties": {
4432+
"count": {
4433+
"type": "integer"
4434+
},
4435+
"percentage": {
4436+
"type": "number",
4437+
"format": "float"
4438+
}
4439+
},
4440+
"type": "object"
4441+
},
4442+
"blacklisted": {
4443+
"properties": {
4444+
"count": {
4445+
"type": "integer"
4446+
},
4447+
"percentage": {
4448+
"type": "number",
4449+
"format": "float"
4450+
}
4451+
},
4452+
"type": "object"
4453+
},
4454+
"total": {
4455+
"properties": {
4456+
"count": {
4457+
"type": "integer"
4458+
},
4459+
"percentage": {
4460+
"type": "number",
4461+
"format": "float"
4462+
}
4463+
},
4464+
"type": "object"
4465+
}
4466+
},
4467+
"type": "object"
4468+
}
4469+
},
4470+
"total": {
4471+
"type": "integer"
4472+
}
4473+
},
4474+
"type": "object",
4475+
"nullable": true
4476+
},
44694477
"CreateSubscriberListRequest": {
44704478
"required": [
44714479
"name"

0 commit comments

Comments
 (0)