Mailchimp File Manager API
The fileManager API from Mailchimp — 5 operation(s) for filemanager.
The fileManager API from Mailchimp — 5 operation(s) for filemanager.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/mailchimp-filemanager-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
openapi: 3.2.0
info:
version: 3.0.91
title: Mailchimp Marketing File Manager API
contact:
name: Mailchimp API Support
email: apihelp@mailchimp.com
x-permalink: https://github.com/mailchimp/mailchimp-client-lib-codegen/blob/main/spec/marketing.json
servers:
- url: https://server.api.mailchimp.com/3.0
security:
- basicAuth: []
tags:
- name: fileManager
paths:
/file-manager/files:
get:
summary: List stored files
description: Get a list of available images and files stored in the File Manager for the account.
operationId: getFileManagerFiles
parameters:
- name: fields
x-title: Fields
in: query
description: A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation.
required: false
style: form
explode: false
schema:
type: array
items:
type: string
- name: exclude_fields
x-title: Exclude Fields
in: query
description: A comma-separated list of fields to exclude. Reference parameters of sub-objects with dot notation.
required: false
style: form
explode: false
schema:
type: array
items:
type: string
- name: count
x-title: Count
in: query
description: The number of records to return. Default value is 10. Maximum value is 1000
required: false
schema:
type: integer
default: 10
maximum: 1000
- name: offset
x-title: Offset
in: query
description: Used for [pagination](https://mailchimp.com/developer/marketing/docs/methods-parameters/#pagination), this is the number of records from a collection to skip. Default value is 0.
required: false
schema:
type: integer
default: 0
- name: type
x-title: File Type
in: query
description: The file type for the File Manager file.
required: false
schema:
type: string
- name: created_by
x-title: Created By
in: query
description: The Mailchimp account user who created the File Manager file.
required: false
schema:
type: string
- name: before_created_at
x-title: Before Created At
in: query
description: 'Restrict the response to files created before the set date. Uses ISO 8601 time format: 2015-10-21T15:41:36+00:00.'
required: false
schema:
type: string
- name: since_created_at
x-title: Since Created At
in: query
description: 'Restrict the response to files created after the set date. Uses ISO 8601 time format: 2015-10-21T15:41:36+00:00.'
required: false
schema:
type: string
- name: sort_field
x-title: Sort By Field
description: Returns files sorted by the specified field.
in: query
required: false
schema:
type: string
enum:
- added_date
- name
- size
- name: sort_dir
x-title: Sort Direction
description: Determines the order direction for sorted results.
in: query
required: false
schema:
type: string
enum:
- ASC
- DESC
responses:
'200':
description: ''
content:
application/json:
schema:
type: object
title: File Manager
description: A list of available images and files stored in the File Manager for the account.
properties:
files:
type: array
items:
type: object
title: Gallery File
description: An individual file listed in the File Manager.
properties:
id:
type: integer
title: File ID
description: The unique id of the file.
readOnly: true
folder_id:
type: integer
title: Folder ID
description: The id of the folder.
type:
enum:
- image
- file
type: string
title: File Type
description: The type of file in the File Manager.
readOnly: true
name:
type: string
title: File Name
description: The name of the file.
full_size_url:
type: string
title: File URL
description: The url of the full-size file.
format: uri
readOnly: true
thumbnail_url:
type: string
title: Thumbnail URL
description: The url of the thumbnail preview.
format: uri
readOnly: true
size:
type: integer
title: File Size
description: The size of the file in bytes.
readOnly: true
created_at:
type: string
title: Created Date
description: The date and time a file was added to the File Manager in ISO 8601 format.
format: date-time
readOnly: true
created_by:
type: string
title: Created By
description: The username of the profile that uploaded the file.
readOnly: true
width:
type: integer
title: Image Width
description: The width of the image.
readOnly: true
height:
type: integer
title: Image Height
description: The height of an image.
readOnly: true
_links:
title: Links
description: A list of link types and descriptions for the API schema documents.
type: array
items:
type: object
title: Resource Link
description: This object represents a link from the resource where it is found to another resource or action that may be performed.
properties:
rel:
type: string
title: Rel
description: As with an HTML 'rel' attribute, this describes the type of link.
readOnly: true
href:
type: string
title: Href
description: This property contains a fully-qualified URL that can be called to retrieve the linked resource or perform the linked action.
readOnly: true
method:
type: string
title: Method
description: The HTTP method that should be used when accessing the URL defined in 'href'.
enum:
- GET
- POST
- PUT
- PATCH
- DELETE
- OPTIONS
- HEAD
readOnly: true
targetSchema:
type: string
title: Target Schema
description: For GETs, this is a URL representing the schema that the response should conform to.
readOnly: true
schema:
type: string
title: Schema
description: For HTTP methods that can receive bodies (POST and PUT), this is a URL representing the schema that the body should conform to.
readOnly: true
readOnly: true
title: Files
description: ' A list of files and images in an account.'
total_file_size:
type: number
title: Total File Size
description: The total size of all File Manager files in bytes.
readOnly: true
total_items:
type: integer
title: Item Count
description: The total number of items matching the query regardless of pagination.
readOnly: true
_links:
title: Links
description: A list of link types and descriptions for the API schema documents.
type: array
items:
type: object
title: Resource Link
description: This object represents a link from the resource where it is found to another resource or action that may be performed.
properties:
rel:
type: string
title: Rel
description: As with an HTML 'rel' attribute, this describes the type of link.
readOnly: true
href:
type: string
title: Href
description: This property contains a fully-qualified URL that can be called to retrieve the linked resource or perform the linked action.
readOnly: true
method:
type: string
title: Method
description: The HTTP method that should be used when accessing the URL defined in 'href'.
enum:
- GET
- POST
- PUT
- PATCH
- DELETE
- OPTIONS
- HEAD
readOnly: true
targetSchema:
type: string
title: Target Schema
description: For GETs, this is a URL representing the schema that the response should conform to.
readOnly: true
schema:
type: string
title: Schema
description: For HTTP methods that can receive bodies (POST and PUT), this is a URL representing the schema that the body should conform to.
readOnly: true
readOnly: true
application/problem+json:
schema:
type: object
title: File Manager
description: A list of available images and files stored in the File Manager for the account.
properties:
files:
type: array
items:
type: object
title: Gallery File
description: An individual file listed in the File Manager.
properties:
id:
type: integer
title: File ID
description: The unique id of the file.
readOnly: true
folder_id:
type: integer
title: Folder ID
description: The id of the folder.
type:
enum:
- image
- file
type: string
title: File Type
description: The type of file in the File Manager.
readOnly: true
name:
type: string
title: File Name
description: The name of the file.
full_size_url:
type: string
title: File URL
description: The url of the full-size file.
format: uri
readOnly: true
thumbnail_url:
type: string
title: Thumbnail URL
description: The url of the thumbnail preview.
format: uri
readOnly: true
size:
type: integer
title: File Size
description: The size of the file in bytes.
readOnly: true
created_at:
type: string
title: Created Date
description: The date and time a file was added to the File Manager in ISO 8601 format.
format: date-time
readOnly: true
created_by:
type: string
title: Created By
description: The username of the profile that uploaded the file.
readOnly: true
width:
type: integer
title: Image Width
description: The width of the image.
readOnly: true
height:
type: integer
title: Image Height
description: The height of an image.
readOnly: true
_links:
title: Links
description: A list of link types and descriptions for the API schema documents.
type: array
items:
type: object
title: Resource Link
description: This object represents a link from the resource where it is found to another resource or action that may be performed.
properties:
rel:
type: string
title: Rel
description: As with an HTML 'rel' attribute, this describes the type of link.
readOnly: true
href:
type: string
title: Href
description: This property contains a fully-qualified URL that can be called to retrieve the linked resource or perform the linked action.
readOnly: true
method:
type: string
title: Method
description: The HTTP method that should be used when accessing the URL defined in 'href'.
enum:
- GET
- POST
- PUT
- PATCH
- DELETE
- OPTIONS
- HEAD
readOnly: true
targetSchema:
type: string
title: Target Schema
description: For GETs, this is a URL representing the schema that the response should conform to.
readOnly: true
schema:
type: string
title: Schema
description: For HTTP methods that can receive bodies (POST and PUT), this is a URL representing the schema that the body should conform to.
readOnly: true
readOnly: true
title: Files
description: ' A list of files and images in an account.'
total_file_size:
type: number
title: Total File Size
description: The total size of all File Manager files in bytes.
readOnly: true
total_items:
type: integer
title: Item Count
description: The total number of items matching the query regardless of pagination.
readOnly: true
_links:
title: Links
description: A list of link types and descriptions for the API schema documents.
type: array
items:
type: object
title: Resource Link
description: This object represents a link from the resource where it is found to another resource or action that may be performed.
properties:
rel:
type: string
title: Rel
description: As with an HTML 'rel' attribute, this describes the type of link.
readOnly: true
href:
type: string
title: Href
description: This property contains a fully-qualified URL that can be called to retrieve the linked resource or perform the linked action.
readOnly: true
method:
type: string
title: Method
description: The HTTP method that should be used when accessing the URL defined in 'href'.
enum:
- GET
- POST
- PUT
- PATCH
- DELETE
- OPTIONS
- HEAD
readOnly: true
targetSchema:
type: string
title: Target Schema
description: For GETs, this is a URL representing the schema that the response should conform to.
readOnly: true
schema:
type: string
title: Schema
description: For HTTP methods that can receive bodies (POST and PUT), this is a URL representing the schema that the body should conform to.
readOnly: true
readOnly: true
default:
description: An error generated by the Mailchimp API.
content:
application/json:
schema:
type: object
title: Problem Detail Document
description: An error generated by the Mailchimp API. Conforms to IETF draft 'draft-nottingham-http-problem-06'.
required:
- type
- title
- status
- detail
- instance
properties:
type:
type: string
title: Problem Type
description: An absolute URI that identifies the problem type. When dereferenced, it should provide human-readable documentation for the problem type.
example: https://mailchimp.com/developer/marketing/docs/errors/
title:
type: string
title: Error Title
description: A short, human-readable summary of the problem type. It shouldn't change based on the occurrence of the problem, except for purposes of localization.
example: Resource Not Found
status:
type: integer
title: HTTP Status Code
description: The HTTP status code (RFC2616, Section 6) generated by the origin server for this occurrence of the problem.
example: 404
detail:
type: string
title: Error Message
description: A human-readable explanation specific to this occurrence of the problem. [Learn more about errors](/developer/guides/get-started-with-mailchimp-api-3/#Errors).
example: The requested resource could not be found.
instance:
type: string
title: Instance ID
description: A string that identifies this specific occurrence of the problem. Please provide this ID when contacting support.
example: 995c5cb0-3280-4a6e-808b-3b096d0bb219
application/problem+json:
schema:
type: object
title: Problem Detail Document
description: An error generated by the Mailchimp API. Conforms to IETF draft 'draft-nottingham-http-problem-06'.
required:
- type
- title
- status
- detail
- instance
properties:
type:
type: string
title: Problem Type
description: An absolute URI that identifies the problem type. When dereferenced, it should provide human-readable documentation for the problem type.
example: https://mailchimp.com/developer/marketing/docs/errors/
title:
type: string
title: Error Title
description: A short, human-readable summary of the problem type. It shouldn't change based on the occurrence of the problem, except for purposes of localization.
example: Resource Not Found
status:
type: integer
title: HTTP Status Code
description: The HTTP status code (RFC2616, Section 6) generated by the origin server for this occurrence of the problem.
example: 404
detail:
type: string
title: Error Message
description: A human-readable explanation specific to this occurrence of the problem. [Learn more about errors](/developer/guides/get-started-with-mailchimp-api-3/#Errors).
example: The requested resource could not be found.
instance:
type: string
title: Instance ID
description: A string that identifies this specific occurrence of the problem. Please provide this ID when contacting support.
example: 995c5cb0-3280-4a6e-808b-3b096d0bb219
deprecated: false
tags:
- fileManager
x-custom-config:
methodNameSnake: files
methodNameCamel: files
post:
summary: Add file
description: Upload a new image or file to the File Manager.
operationId: postFileManagerFiles
responses:
'200':
description: ''
content:
application/json:
schema:
type: object
title: Gallery File
description: An individual file listed in the File Manager.
properties:
id:
type: integer
title: File ID
description: The unique id of the file.
readOnly: true
folder_id:
type: integer
title: Folder ID
description: The id of the folder.
type:
enum:
- image
- file
type: string
title: File Type
description: The type of file in the File Manager.
readOnly: true
name:
type: string
title: File Name
description: The name of the file.
full_size_url:
type: string
title: File URL
description: The url of the full-size file.
format: uri
readOnly: true
thumbnail_url:
type: string
title: Thumbnail URL
description: The url of the thumbnail preview.
format: uri
readOnly: true
size:
type: integer
title: File Size
description: The size of the file in bytes.
readOnly: true
created_at:
type: string
title: Created Date
description: The date and time a file was added to the File Manager in ISO 8601 format.
format: date-time
readOnly: true
created_by:
type: string
title: Created By
description: The username of the profile that uploaded the file.
readOnly: true
width:
type: integer
title: Image Width
description: The width of the image.
readOnly: true
height:
type: integer
title: Image Height
description: The height of an image.
readOnly: true
_links:
title: Links
description: A list of link types and descriptions for the API schema documents.
type: array
items:
type: object
title: Resource Link
description: This object represents a link from the resource where it is found to another resource or action that may be performed.
properties:
rel:
type: string
title: Rel
description: As with an HTML 'rel' attribute, this describes the type of link.
readOnly: true
href:
type: string
title: Href
description: This property contains a fully-qualified URL that can be called to retrieve the linked resource or perform the linked action.
readOnly: true
method:
type: string
title: Method
description: The HTTP method that should be used when accessing the URL defined in 'href'.
enum:
- GET
- POST
- PUT
- PATCH
- DELETE
- OPTIONS
- HEAD
readOnly: true
targetSchema:
type: string
title: Target Schema
description: For GETs, this is a URL representing the schema that the response should conform to.
readOnly: true
schema:
type: string
title: Schema
description: For HTTP methods that can receive bodies (POST and PUT), this is a URL representing the schema that the body should conform to.
readOnly: true
readOnly: true
application/problem+json:
schema:
type: object
title: Gallery File
description: An individual file listed in the File Manager.
properties:
id:
type: integer
title: File ID
description: The unique id of the file.
readOnly: true
folder_id:
type: integer
title: Folder ID
description: The id of the folder.
type:
enum:
- image
- file
type: string
title: File Type
description: The type of file in the File Manager.
readOnly: true
name:
type: string
title: File Name
description: The name of the file.
full_size_url:
type: string
title: File URL
description: The url of the full-size file.
format: uri
readOnly: true
thumbnail_url:
type: string
title: Thumbnail URL
description: The url of the thumbnail preview.
format: uri
readOnly: true
size:
type: integer
title: File Size
description: The size of the file in bytes.
readOnly: true
created_at:
type: string
title: Created Date
description: The date and time a file was added to the File Manager in ISO 8601 format.
format: date-time
readOnly: true
created_by:
type: string
title: Created By
description: The username of the profile that uploaded the file.
readOnly: true
width:
type: integer
title: Image Width
description: The width of the image.
readOnly: true
height:
type: integer
title: Image Height
description: The height of an image.
readOnly: true
_links:
title: Links
description: A list of link types and descriptions for the API schema documents.
type: array
items:
type: object
title: Resource Link
desc
# --- truncated at 32 KB (187 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/mailchimp/refs/heads/main/openapi/mailchimp-filemanager-api-openapi.yml