Difference between revisions of "API Upload Project Assets"
From zFairs Contest Management
(Created page with "== Upload Project Image == You can use our api to upload images to a project, so these can be viewed by your judges or in the showcase. To do this you need to POST a message t...") |
|||
Line 12: | Line 12: | ||
FairId: '9df61f13-474b-442f-ac1f-edca7348ef71', //This value can be found in your url it's the value of f | FairId: '9df61f13-474b-442f-ac1f-edca7348ef71', //This value can be found in your url it's the value of f | ||
Body: { | Body: { | ||
− | "ProjectKey":"32161f13-474b-442f-ac1f-edca7348e000" | + | "ProjectKey":"32161f13-474b-442f-ac1f-edca7348e000", |
− | "Base64String" : "iVBORw0KGgoAAAANSUhEUgAAAQIAA...", | + | "Base64String" : "iVBORw0KGgoAAAANSUhEUgAAAQIAA...", //not required if you use DownloadFromUrl |
− | "DownloadFromUrl":"http://yoursite.com/somefile.png" //optional can be used in stead of Base64String | + | "DownloadFromUrl":"http://yoursite.com/somefile.png", //optional can be used in stead of Base64String |
"FileName": "myAwesomeFile.png", | "FileName": "myAwesomeFile.png", | ||
"Caption": "indescribable" | "Caption": "indescribable" |
Revision as of 10:51, 7 November 2020
Upload Project Image
You can use our api to upload images to a project, so these can be viewed by your judges or in the showcase. To do this you need to POST a message to your site. Below is an example of what needs to be posted.
fetch('/api/data/project', {
method:'POST',
headers:{'Content-Type': 'application/json'},
body: JSON.stringify({
Username:'admin username',
Password: 'password',
FairId: '9df61f13-474b-442f-ac1f-edca7348ef71', //This value can be found in your url it's the value of f
Body: {
"ProjectKey":"32161f13-474b-442f-ac1f-edca7348e000",
"Base64String" : "iVBORw0KGgoAAAANSUhEUgAAAQIAA...", //not required if you use DownloadFromUrl
"DownloadFromUrl":"http://yoursite.com/somefile.png", //optional can be used in stead of Base64String
"FileName": "myAwesomeFile.png",
"Caption": "indescribable"
}
})
})
.then(response => response.json())
.then(data=>{console.log('Success: ',data);})
.catch((error)=>{console.log('Error: ', error);});