Get a Signed Response Object
https://mapi.storyblok.com/v1/spaces/:space_id/assets/Returns a signed response to be used to upload the asset. See upload and replace assets for further information.
Path parameters
Section titled “Path parameters”- :space_id required number
Numeric ID of a space
Request body properties
Section titled “Request body properties”- filename string
Filename of the asset. Required.
- id number
Numeric ID of the existing asset. Optional.
- asset_folder_id number
ID of the target asset folder. Optional.
- size string
Specifies the asset dimensions in the format
<width>X<height>(for example,300X400). Optional. - validate_upload number
Determines whether the upload has to be validated. Disabled by default. Optional.
Response properties
Section titled “Response properties”- Signed response object
A signed response object to be used for uploading assets.
Examples
Section titled “Examples”curl "https://mapi.storyblok.com/v1/spaces/288868932106293/assets/" \ -X POST \ -H "Authorization: YOUR_OAUTH_TOKEN" \ -H "Content-Type: application/json" \ -d "{\"asset_folder_id\":638352,\"filename\":\"123.jpg\",\"id\":89293614204583,\"size\":\"\",\"validate_upload\":1}"// Using the Universal JavaScript Client:// https://github.com/storyblok/storyblok-js-clientStoryblok.post('spaces/288868932106293/assets/', { "asset_folder_id": 638352, "filename": "123.jpg", "id": 89293614204583, "size": "", "validate_upload": 1}) .then(response => { console.log(response) }).catch(error => { console.log(error) })$client = new \Storyblok\ManagementClient('YOUR_OAUTH_TOKEN');
$payload = ["asset_folder_id" => 638352,"filename" => "123.jpg","id" => 89293614204583,"size" => "","validate_upload" => 1];
$client->post('spaces/288868932106293/assets/', $payload)->getBody();HttpResponse<String> response = Unirest.post("https://mapi.storyblok.com/v1/spaces/288868932106293/assets/") .header("Content-Type", "application/json") .header("Authorization", "YOUR_OAUTH_TOKEN") .body({"asset_folder_id":638352,"filename":"123.jpg","id":89293614204583,"size":"","validate_upload":1}) .asString();var client = new RestClient("https://mapi.storyblok.com/v1/spaces/288868932106293/assets/");var request = new RestRequest(Method.POST);
request.AddHeader("Content-Type", "application/json");request.AddHeader("Authorization", "YOUR_OAUTH_TOKEN");request.AddParameter("application/json", "{\"asset_folder_id\":638352,\"filename\":\"123.jpg\",\"id\":89293614204583,\"size\":\"\",\"validate_upload\":1}", ParameterType.RequestBody);IRestResponse response = client.Execute(request);import requests
url = "https://mapi.storyblok.com/v1/spaces/288868932106293/assets/"
querystring = {}
payload = {"asset_folder_id":638352,"filename":"123.jpg","id":89293614204583,"size":"","validate_upload":1}headers = { 'Content-Type': "application/json", 'Authorization': "YOUR_OAUTH_TOKEN"}
response = requests.request("POST", url, data=payload, headers=headers, params=querystring)
print(response.text)require 'storyblok'client = Storyblok::Client.new(oauth_token: 'YOUR_OAUTH_TOKEN')
payload = {"asset_folder_id" => 638352,"filename" => "123.jpg","id" => 89293614204583,"size" => "","validate_upload" => 1}
client.post('spaces/288868932106293/assets/', payload)var request = URLRequest(url: URL(string: "https://mapi.storyblok.com/v1/spaces/288868932106293/assets/")!)request.setValue("YOUR_OAUTH_TOKEN", forHTTPHeaderField: "Authorization")request.httpMethod = "POST"request.httpBody = try JSONSerialization.data(withJSONObject: [ "asset_folder_id": 638352, "filename": "123.jpg", "id": 89293614204583, "size": "", "validate_upload": 1,])let (data, _) = try await URLSession.shared.data(for: request)print(try JSONSerialization.jsonObject(with: data))val client = HttpClient { install(ContentNegotiation) { json() } install(DefaultRequest) { url { takeFrom("https://mapi.storyblok.com/v1/") headers.append("Authorization", "YOUR_OAUTH_TOKEN") } }}
val response = client.post("spaces/288868932106293/assets/") { contentType(ContentType.Application.Json) setBody(buildJsonObject { put("asset_folder_id", 638352) put("filename", "123.jpg") put("id", 89293614204583) put("size", "") put("validate_upload", 1) })}
println(response.body<JsonElement>())Get in touch with the Storyblok community