upload file to s3 in common bucket, i.e., not under a dealer's bucket
upload file to s3 in common bucket, i.e., not under a dealer's bucket
Query Parameters
fileType string
Possible values: [IMAGE
, PDF
, XSLT
, AUDIO
, VIDEO
, HTML
, XML
, OTHER
]
Default value: OTHER
Choose a value of fileType from the provided values
contentType string
Valid contentType of file, e.g. image/png or audio/mpeg etc. If not provided then we'll try to get it from the provided multipart file's properties.
application/json
Request Body
file binary required
Multipart file to be uploaded
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
uploadUrl string
errors object[]
warnings object[]
{
"uploadUrl": "string",
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
PUT /file
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X PUT '/communications/file' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
python / requests
curl -L -X PUT '/communications/file' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
go / native
curl -L -X PUT '/communications/file' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
nodejs / axios
curl -L -X PUT '/communications/file' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
ruby / Net::HTTP
curl -L -X PUT '/communications/file' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
csharp / RestSharp
curl -L -X PUT '/communications/file' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
php / cURL
curl -L -X PUT '/communications/file' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
java / OkHttp
curl -L -X PUT '/communications/file' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'
powershell / RestMethod
curl -L -X PUT '/communications/file' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"file": "string"
}'