|
1791 | 1791 | } |
1792 | 1792 | } |
1793 | 1793 | }, |
| 1794 | + "/users/{user}/addressregister/{id}": { |
| 1795 | + "put": { |
| 1796 | + "tags": [ |
| 1797 | + "Addresses" |
| 1798 | + ], |
| 1799 | + "summary": "Update an address in the addressregister", |
| 1800 | + "operationId": "updateAddressAddressregister", |
| 1801 | + "requestBody": { |
| 1802 | + "content": { |
| 1803 | + "application/json": { |
| 1804 | + "schema": { |
| 1805 | + "type": "object", |
| 1806 | + "properties": { |
| 1807 | + "disabled": { |
| 1808 | + "type": "boolean", |
| 1809 | + "description": "Disable the address in the register. Disabled addresses are not updated on email receival and sending. Disabled addresses are not included in the response for listing addresses in the register." |
| 1810 | + }, |
| 1811 | + "name": { |
| 1812 | + "type": "string", |
| 1813 | + "description": "Address header name" |
| 1814 | + } |
| 1815 | + }, |
| 1816 | + "required": [ |
| 1817 | + "disabled" |
| 1818 | + ] |
| 1819 | + } |
| 1820 | + } |
| 1821 | + }, |
| 1822 | + "required": true |
| 1823 | + }, |
| 1824 | + "parameters": [ |
| 1825 | + { |
| 1826 | + "name": "user", |
| 1827 | + "in": "path", |
| 1828 | + "description": "Example: `507f1f77bcf86cd799439011`\nID of the User", |
| 1829 | + "required": true, |
| 1830 | + "schema": { |
| 1831 | + "type": "string" |
| 1832 | + } |
| 1833 | + }, |
| 1834 | + { |
| 1835 | + "name": "id", |
| 1836 | + "in": "path", |
| 1837 | + "description": "ID of the Address", |
| 1838 | + "required": true, |
| 1839 | + "schema": { |
| 1840 | + "type": "string" |
| 1841 | + } |
| 1842 | + }, |
| 1843 | + { |
| 1844 | + "name": "sess", |
| 1845 | + "in": "query", |
| 1846 | + "description": "Session identifier for the logs", |
| 1847 | + "required": false, |
| 1848 | + "schema": { |
| 1849 | + "type": "string" |
| 1850 | + } |
| 1851 | + }, |
| 1852 | + { |
| 1853 | + "name": "ip", |
| 1854 | + "in": "query", |
| 1855 | + "description": "IP address for the logs ", |
| 1856 | + "required": false, |
| 1857 | + "schema": { |
| 1858 | + "type": "string" |
| 1859 | + } |
| 1860 | + } |
| 1861 | + ], |
| 1862 | + "responses": { |
| 1863 | + "200": { |
| 1864 | + "description": "Success", |
| 1865 | + "content": { |
| 1866 | + "application/json": { |
| 1867 | + "schema": { |
| 1868 | + "$ref": "#/components/schemas/SuccessResponse" |
| 1869 | + } |
| 1870 | + } |
| 1871 | + } |
| 1872 | + } |
| 1873 | + } |
| 1874 | + } |
| 1875 | + }, |
1794 | 1876 | "/addresses/forwarded": { |
1795 | 1877 | "post": { |
1796 | 1878 | "tags": [ |
|
11770 | 11852 | }, |
11771 | 11853 | "text": { |
11772 | 11854 | "type": "string", |
11773 | | - "description": "Fulltext search against message text" |
| 11855 | + "description": "Fulltext search against message text. Implements boolean logic where terms like OR and AND are treated as boolean operators. Space and commas are to be treated as AND terms as there is no separate \"AND\" term. Supports exact matches enclosed in double quotes \"exact match text\".", |
| 11856 | + "example": "urgent,immediate OR deadline OR meeting standup" |
11774 | 11857 | }, |
11775 | 11858 | "ha": { |
11776 | 11859 | "type": "boolean", |
@@ -12608,11 +12691,15 @@ |
12608 | 12691 | }, |
12609 | 12692 | "requirePasswordChange": { |
12610 | 12693 | "type": "boolean", |
12611 | | - "description": "Indicates if account hassword has been reset and should be replaced" |
| 12694 | + "description": "Indicates if account password has been reset and should be replaced" |
12612 | 12695 | }, |
12613 | 12696 | "token": { |
12614 | 12697 | "type": "string", |
12615 | 12698 | "description": "If access token was requested then this is the value to use as access token when making API requests on behalf of logged in user." |
| 12699 | + }, |
| 12700 | + "passwordPwned": { |
| 12701 | + "type": "boolean", |
| 12702 | + "description": "Indicates whether account password has been found in the list of Pwned passwords and should be replaced" |
12616 | 12703 | } |
12617 | 12704 | }, |
12618 | 12705 | "required": [ |
|
0 commit comments