POST
/
assets-add
Add Assets
curl --request POST \
  --url https://api.agentic.scope3.com/rest/v1/assets-add \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "assets": [
    {
      "name": "Display Banner",
      "source": "https://example.com/banner.jpg",
      "type": "image"
    }
  ],
  "buyerAgentId": "buyer_123"
}'
{
  "data": {},
  "message": "Operation completed successfully",
  "success": true
}

Authorizations

Authorization
string
header
required

Use your Scope3 API key as the bearer token

Body

application/json
assets
string[]
required

Array of assets to add (max 10 per request)

buyerAgentId
string
required

The buyer agent that owns these assets

Response

Successful response

data
object
message
string
success
boolean