diff --git a/app/controllers/api/functions.php b/app/controllers/api/functions.php index fe01a87c23..2d8c012c11 100644 --- a/app/controllers/api/functions.php +++ b/app/controllers/api/functions.php @@ -1611,8 +1611,9 @@ App::post('/v1/functions/:functionId/executions') ->label('sdk.method', 'createExecution') ->label('sdk.description', '/docs/references/functions/create-execution.md') ->label('sdk.response.code', Response::STATUS_CODE_CREATED) - ->label('sdk.response.type', Response::CONTENT_TYPE_JSON) + ->label('sdk.response.type', Response::CONTENT_TYPE_MULTIPART) ->label('sdk.response.model', Response::MODEL_EXECUTION) + ->label('sdk.request.type', Response::CONTENT_TYPE_MULTIPART) ->param('functionId', '', new UID(), 'Function ID.') ->param('body', '', new Text(10485760, 0), 'HTTP body of execution. Default value is empty string.', true) ->param('async', false, new Boolean(), 'Execute code in the background. Default value is false.', true)