easy-multipart-form-data
Service icon

Easy multipart/form-data

Stable version 1.0.4 (Compatible with OutSystems 11)
Uploaded on 3 Mar by 
5.0
 (1 rating)
easy-multipart-form-data

Easy multipart/form-data

Documentation
1.0.0

Options

 

Easy_Formdata

A simple way to use multipart/form-data in APIs.

Multipart types indicate a category of documents that are broken into distinct parts, often with different MIME types. It is a way of representing a compound document. With the exception of multipart/form-data, which are used in relation to HTML forms and the POST method.


Body

  • Header to provide information for each subpart of the form.
    • Name: Name of the field on the form.
    • Value: Value of the field on the form.


File

  • Header to provide information for each subpart of the file in the form.
    • Name: Name of the field that contains the file in the form.
    • Filename: Name of the file.
    • ContentType: Mime-type of the file.
    • Binary: Binary of the file.


Content

  • Contains the multipart mime-type and form-data converted to binary.
    • Type: Mime-type of the multipart that will be inserted in the request header.
    • Binary: Request body converted into binary.