mirror of
https://github.com/directus/directus.git
synced 2026-02-12 21:35:08 -05:00
26 lines
559 B
YAML
26 lines
559 B
YAML
post:
|
|
summary: Import Items
|
|
description: Import multiple records from a JSON or CSV file into a collection.
|
|
operationId: import
|
|
parameters:
|
|
- description: Collection identifier
|
|
in: path
|
|
name: collection
|
|
required: true
|
|
schema:
|
|
type: string
|
|
requestBody:
|
|
content:
|
|
multipart/form-data:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
file:
|
|
type: string
|
|
format: binary
|
|
responses:
|
|
'200':
|
|
description: Successful request
|
|
tags:
|
|
- Utilities
|