Marketo Bulk Import Custom Objects API

Bulk Import Custom Objects Controller

Operations 4

POST /bulk/v1/customobjects/{apiName}/import.json Import Custom Objects #
GET /bulk/v1/customobjects/{apiName}/import/{batchId}/failures.json Get Import Custom Object Failures #
GET /bulk/v1/customobjects/{apiName}/import/{batchId}/status.json Get Import Custom Object Status #
GET /bulk/v1/customobjects/{apiName}/import/{batchId}/warnings.json Get Import Custom Object Warnings #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • 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.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/marketo-bulk-import-custom-objects-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

marketo-bulk-import-custom-objects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Marketo Engage Rest API
  version: '1.0'
  title: Marketo Engage Rest Bulk Import Custom Objects API
  termsOfService: https://www.adobe.com/legal.html
  contact:
    name: Adobe Developer Relations
    url: https://experienceleague.adobe.com/en/docs/marketo-developer/marketo/home
    email: ''
  license:
    name: API License Agreement
    url: https://experienceleague.adobe.com/en/docs/marketo-developer/marketo/api-license
servers:
- url: https://localhost:8080/
tags:
- name: Bulk Import Custom Objects
  description: Bulk Import Custom Objects Controller
paths:
  /bulk/v1/customobjects/{apiName}/import.json:
    post:
      tags:
      - Bulk Import Custom Objects
      summary: Import Custom Objects
      description: 'Imports a file containing data records into the target instance. Required Permissions: Read-Write Custom Object'
      operationId: importCustomObjectUsingPOST
      parameters:
      - name: apiName
        in: path
        description: API Name of the custom object for the import batch job.
        required: true
        schema:
          type: string
      - name: format
        in: query
        description: Import file format.
        required: true
        schema:
          type: string
          enum:
          - csv
          - tsv
          - ssv
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseOfImportCustomObjectResponse'
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  description: File containing the data records to import.
                  format: binary
              required:
              - file
  /bulk/v1/customobjects/{apiName}/import/{batchId}/failures.json:
    get:
      tags:
      - Bulk Import Custom Objects
      summary: Get Import Custom Object Failures
      description: 'Returns the list of failures for the import batch job. Required Permissions: Read-Write Custom Object'
      operationId: getImportCustomObjectFailuresUsingGET
      parameters:
      - name: apiName
        in: path
        description: API Name of the custom object for the import batch job.
        required: true
        schema:
          type: string
      - name: batchId
        in: path
        description: Id of the import batch job.
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObservableOfInputStreamContent'
  /bulk/v1/customobjects/{apiName}/import/{batchId}/status.json:
    get:
      tags:
      - Bulk Import Custom Objects
      summary: Get Import Custom Object Status
      description: 'Returns the status of an import batch job. Required Permissions: Read-Write Custom Object'
      operationId: getImportCustomObjectStatusUsingGET
      parameters:
      - name: apiName
        in: path
        description: API Name of the custom object for the import batch job.
        required: true
        schema:
          type: string
      - name: batchId
        in: path
        description: Id of the import batch job.
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ResponseOfImportCustomObjectResponse'
  /bulk/v1/customobjects/{apiName}/import/{batchId}/warnings.json:
    get:
      tags:
      - Bulk Import Custom Objects
      summary: Get Import Custom Object Warnings
      description: 'Returns the list of warnings for the import batch job. Required Permissions: Read-Write Custom Object'
      operationId: getImportCustomObjectWarningsUsingGET
      parameters:
      - name: apiName
        in: path
        description: API Name of the custom object for the import batch job.
        required: true
        schema:
          type: string
      - name: batchId
        in: path
        description: Id of the import batch job.
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObservableOfInputStreamContent'
components:
  schemas:
    Error:
      type: object
      required:
      - code
      - message
      properties:
        code:
          type: string
          description: Error code of the error. See full list of error codes <a href="https://developers.marketo.com/rest-api/error-codes/">here</a>
        message:
          type: string
          description: Message describing the cause of the error
    Warning:
      type: object
      required:
      - code
      - message
      properties:
        code:
          type: integer
          format: int32
          description: Integer code of the warning
        message:
          type: string
          description: Message describing the warning
    ImportCustomObjectResponse:
      type: object
      required:
      - batchId
      - objectApiName
      - operation
      - status
      properties:
        batchId:
          type: integer
          format: int32
          description: Unique integer id of the import batch
        importTime:
          type: string
          description: Time spent on the batch
        message:
          type: string
          description: Status message of the batch
        numOfObjectsProcessed:
          type: integer
          format: int32
          description: Number of rows processed so far
        numOfRowsFailed:
          type: integer
          format: int32
          description: Number of rows failed so far
        numOfRowsWithWarning:
          type: integer
          format: int32
          description: Number of rows with a warning so far
        objectApiName:
          type: string
          description: Object API Name
        operation:
          type: string
          description: Bulk operation type. Can be import or export
        status:
          type: string
          description: Status of the batch
      description: Response containing import status information
    ObservableOfInputStreamContent:
      type: object
    ResponseOfImportCustomObjectResponse:
      type: object
      required:
      - errors
      - requestId
      - result
      - success
      - warnings
      properties:
        errors:
          type: array
          description: Array of errors that occurred if the request was unsuccessful
          items:
            $ref: '#/components/schemas/Error'
        moreResult:
          type: boolean
          example: false
          description: Boolean indicating if there are more results in subsequent pages
        nextPageToken:
          type: string
          description: Paging token given if the result set exceeded the allowed batch size
        requestId:
          type: string
          description: Id of the request made
        result:
          type: array
          description: Array of results for individual records in the operation, may be empty
          items:
            $ref: '#/components/schemas/ImportCustomObjectResponse'
        success:
          type: boolean
          example: false
          description: Whether the request succeeded
        warnings:
          type: array
          description: Array of warnings given for the operation
          items:
            $ref: '#/components/schemas/Warning'