curl --request POST \
--url https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"filename": "keynote-slides.pptx",
"size_bytes": 262144000,
"content_type": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
"mimetype": "<string>",
"title": "<string>",
"assigned_participant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace"
payload = {
"filename": "keynote-slides.pptx",
"size_bytes": 262144000,
"content_type": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
"mimetype": "<string>",
"title": "<string>",
"assigned_participant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
filename: 'keynote-slides.pptx',
size_bytes: 262144000,
content_type: 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
mimetype: '<string>',
title: '<string>',
assigned_participant_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
})
};
fetch('https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'filename' => 'keynote-slides.pptx',
'size_bytes' => 262144000,
'content_type' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
'mimetype' => '<string>',
'title' => '<string>',
'assigned_participant_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace"
payload := strings.NewReader("{\n \"filename\": \"keynote-slides.pptx\",\n \"size_bytes\": 262144000,\n \"content_type\": \"application/vnd.openxmlformats-officedocument.presentationml.presentation\",\n \"mimetype\": \"<string>\",\n \"title\": \"<string>\",\n \"assigned_participant_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"filename\": \"keynote-slides.pptx\",\n \"size_bytes\": 262144000,\n \"content_type\": \"application/vnd.openxmlformats-officedocument.presentationml.presentation\",\n \"mimetype\": \"<string>\",\n \"title\": \"<string>\",\n \"assigned_participant_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"filename\": \"keynote-slides.pptx\",\n \"size_bytes\": 262144000,\n \"content_type\": \"application/vnd.openxmlformats-officedocument.presentationml.presentation\",\n \"mimetype\": \"<string>\",\n \"title\": \"<string>\",\n \"assigned_participant_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"url": "<string>",
"title": "<string>",
"filename": "<string>",
"size": 123,
"mimetype": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"assigned_participant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"assigned_participant_email": "[email protected]",
"assigned_participant_name": "<string>",
"upload": {
"url": "<string>",
"method": "PUT",
"headers": {
"Content-Type": "<string>"
}
}
}
}Replace session file bytes
Issues a new upload URL for the same file record. After PUTing the new
bytes, call complete again. Requires write:sessions. Max 500 MB
(direct-to-storage flow).
curl --request POST \
--url https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"filename": "keynote-slides.pptx",
"size_bytes": 262144000,
"content_type": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
"mimetype": "<string>",
"title": "<string>",
"assigned_participant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace"
payload = {
"filename": "keynote-slides.pptx",
"size_bytes": 262144000,
"content_type": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
"mimetype": "<string>",
"title": "<string>",
"assigned_participant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
filename: 'keynote-slides.pptx',
size_bytes: 262144000,
content_type: 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
mimetype: '<string>',
title: '<string>',
assigned_participant_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
})
};
fetch('https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'filename' => 'keynote-slides.pptx',
'size_bytes' => 262144000,
'content_type' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
'mimetype' => '<string>',
'title' => '<string>',
'assigned_participant_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace"
payload := strings.NewReader("{\n \"filename\": \"keynote-slides.pptx\",\n \"size_bytes\": 262144000,\n \"content_type\": \"application/vnd.openxmlformats-officedocument.presentationml.presentation\",\n \"mimetype\": \"<string>\",\n \"title\": \"<string>\",\n \"assigned_participant_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"filename\": \"keynote-slides.pptx\",\n \"size_bytes\": 262144000,\n \"content_type\": \"application/vnd.openxmlformats-officedocument.presentationml.presentation\",\n \"mimetype\": \"<string>\",\n \"title\": \"<string>\",\n \"assigned_participant_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.sessionboard.com/v1/event/{eventId}/sessions/{sessionId}/files/{fileId}/replace")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"filename\": \"keynote-slides.pptx\",\n \"size_bytes\": 262144000,\n \"content_type\": \"application/vnd.openxmlformats-officedocument.presentationml.presentation\",\n \"mimetype\": \"<string>\",\n \"title\": \"<string>\",\n \"assigned_participant_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"url": "<string>",
"title": "<string>",
"filename": "<string>",
"size": 123,
"mimetype": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"assigned_participant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"assigned_participant_email": "[email protected]",
"assigned_participant_name": "<string>",
"upload": {
"url": "<string>",
"method": "PUT",
"headers": {
"Content-Type": "<string>"
}
}
}
}Authorizations
Organization API token. Generate from Organization Settings → API Tokens.
Path Parameters
Event ID
Session UUID
Session file (Content) UUID
Body
Original filename including extension (e.g. slides.pptx, handout.pdf).
"keynote-slides.pptx"
Exact file size in bytes. Maximum 500 MB (524288000) for direct-to-storage upload. Use POST .../files/upload for files up to 50 MB without specifying size.
1 <= x <= 524288000MIME type. Optional; inferred from the filename extension when omitted.
"application/vnd.openxmlformats-officedocument.presentationml.presentation"
Alias for content_type.
Display title. Defaults to filename.
Contact UUID of a session participant to assign this file to.
Response
OK — new upload URL included
A content attachment (file, document, or media) associated with a session.
Show child attributes
Show child attributes

