post https://api.supportbench.com/attachment/upload/
Result Object
Name | Description |
---|---|
file_name | The file name of the file uploaded |
url | The uploaded url of the file. |
bytes | The size of the file in bytes. |
Responses
Name | Description |
---|---|
file_name | The file name of the file uploaded |
url | The uploaded url of the file. |
bytes | The size of the file in bytes. |
xxxxxxxxxx
38<html>
<form id="form-uploader" enctype="multipart/form-data" method="post" novalidate="novalidate">
<input type="file" id="fileInput" name="fileInput" />
</form>
</html>
​
<script>
var data = new FormData($('#form-uploader')); //The form with the <input type="file">
​
//attach the file to the form
var attachedFile = $('#fileInput')[0];
data.append("files", attachedFile.files[0]);
​
//A string to attach related file
_groupId = "34dr57dfg56tsd239d";
​
$.ajax({
url: "https://api.supportbench.net/attachment/upload/" + _groupId,
type: 'POST',
beforeSend: function(request) {
request.setRequestHeader('Authorization', 'Bearer ' + token);
},
enctype: 'multipart/form-data',
contentType: false,
processData: false, // prevent auto processing
cache: false,
data: data, // submit the manipulated form data
success: function(d, textStatus, xhr) {
$.each($.parseJSON(d), function(index, i) {