|
2210 | 2210 | "SecurityScheme" : [ ] |
2211 | 2211 | } ] |
2212 | 2212 | } |
| 2213 | + }, |
| 2214 | + "/v1/tokens/{onboardingId}/template-attachment" : { |
| 2215 | + "get" : { |
| 2216 | + "tags" : [ "Token Controller" ], |
| 2217 | + "summary" : "Retrieve template attachment for a given onboarding and filename", |
| 2218 | + "description" : "Downloads the template attachment file associated with the specified onboarding ID and filename.", |
| 2219 | + "operationId" : "getTemplateAttachment", |
| 2220 | + "parameters" : [ { |
| 2221 | + "name" : "onboardingId", |
| 2222 | + "in" : "path", |
| 2223 | + "required" : true, |
| 2224 | + "schema" : { |
| 2225 | + "type" : "string" |
| 2226 | + } |
| 2227 | + }, { |
| 2228 | + "name" : "name", |
| 2229 | + "in" : "query", |
| 2230 | + "required" : true, |
| 2231 | + "schema" : { |
| 2232 | + "type" : "string" |
| 2233 | + } |
| 2234 | + } ], |
| 2235 | + "responses" : { |
| 2236 | + "200" : { |
| 2237 | + "description" : "OK", |
| 2238 | + "content" : { |
| 2239 | + "application/octet-stream" : { |
| 2240 | + "schema" : { |
| 2241 | + "format" : "binary", |
| 2242 | + "type" : "string" |
| 2243 | + } |
| 2244 | + } |
| 2245 | + } |
| 2246 | + }, |
| 2247 | + "401" : { |
| 2248 | + "description" : "Not Authorized" |
| 2249 | + }, |
| 2250 | + "403" : { |
| 2251 | + "description" : "Not Allowed" |
| 2252 | + } |
| 2253 | + }, |
| 2254 | + "security" : [ { |
| 2255 | + "SecurityScheme" : [ ] |
| 2256 | + } ] |
| 2257 | + } |
2213 | 2258 | } |
2214 | 2259 | }, |
2215 | 2260 | "components" : { |
|
2936 | 2981 | "signContract" : { |
2937 | 2982 | "type" : "boolean" |
2938 | 2983 | }, |
| 2984 | + "userRequester" : { |
| 2985 | + "$ref" : "#/components/schemas/UserRequesterDto" |
| 2986 | + }, |
2939 | 2987 | "institution" : { |
2940 | 2988 | "$ref" : "#/components/schemas/InstitutionBaseRequest" |
2941 | 2989 | }, |
|
2985 | 3033 | "signContract" : { |
2986 | 3034 | "type" : "boolean" |
2987 | 3035 | }, |
| 3036 | + "userRequester" : { |
| 3037 | + "$ref" : "#/components/schemas/UserRequesterDto" |
| 3038 | + }, |
2988 | 3039 | "institution" : { |
2989 | 3040 | "$ref" : "#/components/schemas/InstitutionBaseRequest" |
2990 | 3041 | }, |
|
3053 | 3104 | "status" : { |
3054 | 3105 | "type" : "string" |
3055 | 3106 | }, |
3056 | | - "userRequestUid" : { |
3057 | | - "type" : "string" |
| 3107 | + "userRequester" : { |
| 3108 | + "$ref" : "#/components/schemas/UserRequesterResponse" |
3058 | 3109 | }, |
3059 | 3110 | "reasonForReject" : { |
3060 | 3111 | "type" : "string" |
|
3183 | 3234 | "signContract" : { |
3184 | 3235 | "type" : "boolean" |
3185 | 3236 | }, |
| 3237 | + "userRequester" : { |
| 3238 | + "$ref" : "#/components/schemas/UserRequesterDto" |
| 3239 | + }, |
3186 | 3240 | "institution" : { |
3187 | 3241 | "$ref" : "#/components/schemas/InstitutionBaseRequest" |
3188 | 3242 | }, |
|
3258 | 3312 | "signContract" : { |
3259 | 3313 | "type" : "boolean" |
3260 | 3314 | }, |
| 3315 | + "userRequester" : { |
| 3316 | + "$ref" : "#/components/schemas/UserRequesterDto" |
| 3317 | + }, |
3261 | 3318 | "institution" : { |
3262 | 3319 | "$ref" : "#/components/schemas/InstitutionPspRequest" |
3263 | 3320 | }, |
|
3299 | 3356 | "additionalInformations" : { |
3300 | 3357 | "$ref" : "#/components/schemas/AdditionalInformationsDto" |
3301 | 3358 | }, |
3302 | | - "userRequestUid" : { |
3303 | | - "type" : "string" |
3304 | | - }, |
3305 | 3359 | "isAggregator" : { |
3306 | 3360 | "type" : "boolean" |
3307 | 3361 | }, |
|
3313 | 3367 | }, |
3314 | 3368 | "referenceOnboardingId" : { |
3315 | 3369 | "type" : "string" |
| 3370 | + }, |
| 3371 | + "userRequester" : { |
| 3372 | + "$ref" : "#/components/schemas/UserRequesterResponse" |
3316 | 3373 | } |
3317 | 3374 | } |
3318 | 3375 | }, |
|
3561 | 3618 | } |
3562 | 3619 | } |
3563 | 3620 | }, |
| 3621 | + "UserRequesterDto" : { |
| 3622 | + "type" : "object", |
| 3623 | + "properties" : { |
| 3624 | + "name" : { |
| 3625 | + "type" : "string" |
| 3626 | + }, |
| 3627 | + "surname" : { |
| 3628 | + "type" : "string" |
| 3629 | + }, |
| 3630 | + "email" : { |
| 3631 | + "type" : "string" |
| 3632 | + } |
| 3633 | + } |
| 3634 | + }, |
| 3635 | + "UserRequesterResponse" : { |
| 3636 | + "type" : "object", |
| 3637 | + "properties" : { |
| 3638 | + "userMailUuid" : { |
| 3639 | + "type" : "string" |
| 3640 | + }, |
| 3641 | + "userRequestUid" : { |
| 3642 | + "type" : "string" |
| 3643 | + } |
| 3644 | + } |
| 3645 | + }, |
3564 | 3646 | "UserResponse" : { |
3565 | 3647 | "type" : "object", |
3566 | 3648 | "properties" : { |
|
0 commit comments