upload attachments to s3 for dealer
upload attachments to s3 for dealer
Path Parameters
departmentUUID string required
application/json
multipart/form-data
Request Body
multipartFile binary required
Multipart file to be uploaded
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.
shortUrl string
Shorten url for the attachment uploaded
Request Body
multipartFile binary required
Multipart file to be uploaded
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.
shortUrl string
Shorten url for the attachment uploaded
Responses
- 200
OK
application/json
Schema
Example (from schema)
Schema
attachmentURL string
mediaPreviewURL string
thumbnailURL string
extension string
contentType string
docSize string
shortUrl string
errors object[]
warnings object[]
{
"attachmentURL": "string",
"mediaPreviewURL": "string",
"thumbnailURL": "string",
"extension": "string",
"contentType": "string",
"docSize": "string",
"shortUrl": "string",
"errors": [
{
"errorCode": "string",
"errorDescription": "string",
"errorUID": "string"
}
],
"warnings": [
{
"warningCode": "string",
"warningDescription": "string"
}
]
}
POST /file/departments/:departmentUUID/attachments/multipart
Authorization
name: basicAuthtype: httpscheme: basic
Request
Request
curl / cURL
curl -L -X POST '/communications/file/departments/:departmentUUID/attachments/multipart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"multipartFile": "string",
"contentType": "string",
"shortUrl": "string"
}'
python / requests
curl -L -X POST '/communications/file/departments/:departmentUUID/attachments/multipart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"multipartFile": "string",
"contentType": "string",
"shortUrl": "string"
}'
go / native
curl -L -X POST '/communications/file/departments/:departmentUUID/attachments/multipart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"multipartFile": "string",
"contentType": "string",
"shortUrl": "string"
}'
nodejs / axios
curl -L -X POST '/communications/file/departments/:departmentUUID/attachments/multipart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"multipartFile": "string",
"contentType": "string",
"shortUrl": "string"
}'
ruby / Net::HTTP
curl -L -X POST '/communications/file/departments/:departmentUUID/attachments/multipart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"multipartFile": "string",
"contentType": "string",
"shortUrl": "string"
}'
csharp / RestSharp
curl -L -X POST '/communications/file/departments/:departmentUUID/attachments/multipart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"multipartFile": "string",
"contentType": "string",
"shortUrl": "string"
}'
php / cURL
curl -L -X POST '/communications/file/departments/:departmentUUID/attachments/multipart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"multipartFile": "string",
"contentType": "string",
"shortUrl": "string"
}'
java / OkHttp
curl -L -X POST '/communications/file/departments/:departmentUUID/attachments/multipart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"multipartFile": "string",
"contentType": "string",
"shortUrl": "string"
}'
powershell / RestMethod
curl -L -X POST '/communications/file/departments/:departmentUUID/attachments/multipart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"multipartFile": "string",
"contentType": "string",
"shortUrl": "string"
}'