|
555 | 555 | }, |
556 | 556 | "/v1/onboarding/aggregation/increment" : { |
557 | 557 | "post" : { |
558 | | - "tags" : [ "Onboarding Controller" ], |
| 558 | + "tags" : [ "internal-v1" ], |
559 | 559 | "summary" : "Perform Increment for aggregates", |
560 | 560 | "description" : "Perform the increment of the aggregates for an aggregator entity that has already completed the initial onboarding.The API initiates the onboarding process for the aggregated entities received as input.", |
561 | 561 | "operationId" : "onboardingAggregationIncrement", |
|
1788 | 1788 | } ] |
1789 | 1789 | } |
1790 | 1790 | }, |
| 1791 | + "/v1/onboarding/{onboardingId}/upload-contract-signed" : { |
| 1792 | + "put" : { |
| 1793 | + "tags" : [ "internal-v1" ], |
| 1794 | + "summary" : "Update COMPELTED onboarding uploading signed contract", |
| 1795 | + "description" : "Uploading signed contract given onboardingId, updating related token", |
| 1796 | + "operationId" : "uploadContractSigned", |
| 1797 | + "parameters" : [ { |
| 1798 | + "name" : "onboardingId", |
| 1799 | + "in" : "path", |
| 1800 | + "required" : true, |
| 1801 | + "schema" : { |
| 1802 | + "type" : "string" |
| 1803 | + } |
| 1804 | + } ], |
| 1805 | + "requestBody" : { |
| 1806 | + "content" : { |
| 1807 | + "multipart/form-data" : { |
| 1808 | + "schema" : { |
| 1809 | + "required" : [ "contract" ], |
| 1810 | + "type" : "object", |
| 1811 | + "properties" : { |
| 1812 | + "contract" : { |
| 1813 | + "format" : "binary", |
| 1814 | + "type" : "string" |
| 1815 | + } |
| 1816 | + } |
| 1817 | + } |
| 1818 | + } |
| 1819 | + } |
| 1820 | + }, |
| 1821 | + "responses" : { |
| 1822 | + "200" : { |
| 1823 | + "description" : "OK", |
| 1824 | + "content" : { |
| 1825 | + "application/json" : { } |
| 1826 | + } |
| 1827 | + }, |
| 1828 | + "401" : { |
| 1829 | + "description" : "Not Authorized" |
| 1830 | + }, |
| 1831 | + "403" : { |
| 1832 | + "description" : "Not Allowed" |
| 1833 | + } |
| 1834 | + }, |
| 1835 | + "security" : [ { |
| 1836 | + "SecurityScheme" : [ ] |
| 1837 | + } ] |
| 1838 | + } |
| 1839 | + }, |
1791 | 1840 | "/v1/onboarding/{onboardingId}/withUserInfo" : { |
1792 | 1841 | "get" : { |
1793 | 1842 | "tags" : [ "Onboarding Controller" ], |
|
2046 | 2095 | } ] |
2047 | 2096 | } |
2048 | 2097 | }, |
| 2098 | + "/v1/tokens/{onboardingId}/attachment/status" : { |
| 2099 | + "head" : { |
| 2100 | + "tags" : [ "Token Controller" ], |
| 2101 | + "summary" : "Verify attachment availability", |
| 2102 | + "description" : "Verifies the availability of the specified attachment in the storage system. A successful check returns HTTP 204 (No Content), while a missing attachment results in HTTP 404 (Not Found).", |
| 2103 | + "operationId" : "headAttachment", |
| 2104 | + "parameters" : [ { |
| 2105 | + "name" : "onboardingId", |
| 2106 | + "in" : "path", |
| 2107 | + "required" : true, |
| 2108 | + "schema" : { |
| 2109 | + "type" : "string" |
| 2110 | + } |
| 2111 | + }, { |
| 2112 | + "name" : "name", |
| 2113 | + "in" : "query", |
| 2114 | + "required" : true, |
| 2115 | + "schema" : { |
| 2116 | + "type" : "string" |
| 2117 | + } |
| 2118 | + } ], |
| 2119 | + "responses" : { |
| 2120 | + "200" : { |
| 2121 | + "description" : "OK", |
| 2122 | + "content" : { |
| 2123 | + "application/json" : { } |
| 2124 | + } |
| 2125 | + }, |
| 2126 | + "401" : { |
| 2127 | + "description" : "Not Authorized" |
| 2128 | + }, |
| 2129 | + "403" : { |
| 2130 | + "description" : "Not Allowed" |
| 2131 | + } |
| 2132 | + }, |
| 2133 | + "security" : [ { |
| 2134 | + "SecurityScheme" : [ ] |
| 2135 | + } ] |
| 2136 | + } |
| 2137 | + }, |
2049 | 2138 | "/v1/tokens/{onboardingId}/contract" : { |
2050 | 2139 | "get" : { |
2051 | 2140 | "tags" : [ "Token Controller" ], |
|
2263 | 2352 | "$ref" : "#/components/schemas/UserRequest" |
2264 | 2353 | } |
2265 | 2354 | }, |
| 2355 | + "istatCode" : { |
| 2356 | + "type" : "string" |
| 2357 | + }, |
2266 | 2358 | "recipientCode" : { |
2267 | 2359 | "type" : "string" |
2268 | 2360 | }, |
|
3279 | 3371 | "taxCode" : { |
3280 | 3372 | "type" : "string" |
3281 | 3373 | }, |
3282 | | - "toAddOnAggregates" : { |
3283 | | - "type" : "boolean" |
3284 | | - }, |
3285 | 3374 | "users" : { |
3286 | 3375 | "minItems" : 1, |
3287 | 3376 | "type" : "array", |
3288 | 3377 | "items" : { |
3289 | 3378 | "$ref" : "#/components/schemas/UserRequest" |
3290 | 3379 | } |
| 3380 | + }, |
| 3381 | + "toAddOnAggregates" : { |
| 3382 | + "type" : "boolean" |
3291 | 3383 | } |
3292 | 3384 | } |
3293 | 3385 | }, |
|
0 commit comments