Skip to main content
POST
/
asset-upload
Upload creative assets
curl --request POST \
  --url https://api.jackson.scope3.com/asset-upload \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "brandAgentId": "<string>",
  "assets": [
    {
      "name": "<string>",
      "contentType": "<string>",
      "data": "aSDinaTvuI8gbWludGxpZnk=",
      "assetType": "image",
      "tags": [
        "<string>"
      ]
    }
  ]
}'
{
  "success": true,
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer token authentication using Scope3 API key

Body

application/json
brandAgentId
string
required

Brand agent ID for file organization

assets
object[]
required

Array of assets to upload

Response

Successful tool execution

success
boolean

Whether the operation succeeded

message
string

Human-readable response message

data
object

Response data (varies by tool)

I