web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / How to customize auto-...
Power Automate
Answered

How to customize auto-generated file upload name field in custom connector action?

(0) ShareShare
ReportReport
Posted on by 10

Hi,

I'm creating a custom connector with the ability to upload a file.

This is the swagger definition of the action:

 

"/action/files": {
 "post": {
 "operationId": "UploadFile",
 "summary": "Upload file",
 "consumes": [
 "multipart/form-data"
 ],
 "parameters": [
 {
 "$ref": "#/parameters/regionParam"
 },
 {
 "$ref": "#/parameters/projectIdParam"
 },
 {
 "name": "path",
 "x-ms-summary": "Folder path",
 "description": "Folder path to the file",
 "in": "query",
 "type": "string",
 "default": "/"
 },
 {
 "name": "content",
 "x-ms-summary": "File content",
 "description": "File content to upload",
 "in": "formData",
 "type": "file",
 "required": true
 }
 ],
 "responses": {
 "200": {
 "description": "OK",
 "schema": {
 "type": "object",
 "properties": {
 "fileId": {
 "type": "string",
 "x-ms-summary": "File id"
 },
 "name": {
 "type": "string",
 "x-ms-summary": "File name"
 }
 }
 }
 }
 }
 }
}

 

 This is a screenshot of what the above definition produces:

connector.png

How do I customize the description/x-ms-summary text of the automatically generated "File content (file name)" / "File content to upload (file name)" field? I would like to change it to something more user-friendly like "File name" / "File name with extension".

Categories:
  • murshed Profile Picture
    Microsoft Employee on at

    Hi @janne_ 

    Here is an example of how to do it: https://powerusers.microsoft.com/t5/Building-Flows/Custom-connector-with-action-that-uses-formdata-to-send-file/td-p/122954

    Basically you create three fields with formdata. Please let me know if this works.

     

    If this reply answers your question or solves your issue, please ACCEPT AS SOLUTION ☑️. If you find this reply helpful, please consider giving it a LIKE 👍.

  • Verified answer
    janne_ Profile Picture
    10 on at

    That example doesn't seem to be valid. It uses { "type": "string", "format": "file" } which is not a swagger data type. But it made me take a second look at the documentation, and I noticed that an another way to upload arbitrary binary data is to use { "type": "string", "format": "binary" }, so this seems to work after also modifying the backend to read the file directly from the raw request body:

    {
     "name": "filename",
     "x-ms-summary": "File name",
     "description": "File name with extension",
     "in": "query",
     "type": "string",
     "required": true
    },
    {
     "name": "content",
     "x-ms-summary": "File content",
     "description": "File content to upload",
     "in": "body",
     "schema": {
     "type": "string",
     "format": "binary"
     },
     "required": true
    }

     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Leaderboard > Power Automate

#1
11manish Profile Picture

11manish 249 Super User 2026 Season 2

#2
Mohsin Ali Profile Picture

Mohsin Ali 202

#3
David_MA Profile Picture

David_MA 180 Super User 2026 Season 2

Last 30 days Overall leaderboard