Move the upload headers to the POST method (#978)
This commit is contained in:
parent
a2ac7453fa
commit
942f940c92
30
openapi.yaml
30
openapi.yaml
|
@ -443,21 +443,6 @@ paths:
|
||||||
summary: "Lists manifest CIDs stored locally in node."
|
summary: "Lists manifest CIDs stored locally in node."
|
||||||
tags: [ Data ]
|
tags: [ Data ]
|
||||||
operationId: listData
|
operationId: listData
|
||||||
parameters:
|
|
||||||
- name: content-type
|
|
||||||
in: header
|
|
||||||
required: false
|
|
||||||
description: The content type of the file. Must be valid.
|
|
||||||
schema:
|
|
||||||
type: string
|
|
||||||
example: "image/png"
|
|
||||||
- name: content-disposition
|
|
||||||
in: header
|
|
||||||
required: false
|
|
||||||
description: The content disposition used to send the filename.
|
|
||||||
schema:
|
|
||||||
type: string
|
|
||||||
example: "attachment; filename=\"codex.png\""
|
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: Retrieved list of content CIDs
|
description: Retrieved list of content CIDs
|
||||||
|
@ -478,6 +463,21 @@ paths:
|
||||||
summary: "Upload a file in a streaming manner. Once finished, the file is stored in the node and can be retrieved by any node in the network using the returned CID."
|
summary: "Upload a file in a streaming manner. Once finished, the file is stored in the node and can be retrieved by any node in the network using the returned CID."
|
||||||
tags: [ Data ]
|
tags: [ Data ]
|
||||||
operationId: upload
|
operationId: upload
|
||||||
|
parameters:
|
||||||
|
- name: content-type
|
||||||
|
in: header
|
||||||
|
required: false
|
||||||
|
description: The content type of the file. Must be valid.
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
example: "image/png"
|
||||||
|
- name: content-disposition
|
||||||
|
in: header
|
||||||
|
required: false
|
||||||
|
description: The content disposition used to send the filename.
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
example: "attachment; filename=\"codex.png\""
|
||||||
requestBody:
|
requestBody:
|
||||||
content:
|
content:
|
||||||
application/octet-stream:
|
application/octet-stream:
|
||||||
|
|
Loading…
Reference in New Issue