Skip to main content
PUT
/
v1
/
templates
/
blobs
/
{blob_id}
Upload a preflighted template blob
import requests

url = "https://api.13-215-85-171.sslip.io/v1/templates/blobs/{blob_id}"

payload = "<string>"
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/octet-stream"
}

response = requests.put(url, json=payload, headers=headers)

print(response.text)

Authorizations

Authorization
string
header
required

API key passed as Bearer token

Path Parameters

blob_id
string
required

Body

application/octet-stream

The body is of type file.

Response

Blob uploaded