Skip to main content
POST
/
brand-standards-create
Create brand standard
curl --request POST \
  --url https://api.jackson.scope3.com/brand-standards-create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "brandAgentId": "<string>",
  "name": "<string>",
  "description": "<string>",
  "isArchived": true,
  "countries": [
    "<string>"
  ],
  "channels": [
    "<string>"
  ],
  "languages": [
    "<string>"
  ],
  "brands": [
    "<string>"
  ]
}'
{
  "success": true,
  "message": "<string>",
  "data": {}
}

Authorizations

Authorization
string
header
required

Bearer token authentication using Scope3 API key

Body

application/json
brandAgentId
string
required

ID of the brand agent to create standards for

name
string

Name for the brand standards agent (optional - defaults to "{Brand Agent Name} Standards")

description
string

Description for the brand standards agent

isArchived
boolean

Whether to create the agent as archived

countries
string[]

List of country codes to target (e.g., ['US', 'CA'])

channels
string[]

List of channels to target (e.g., ['web', 'social'])

languages
string[]

List of language codes to target (e.g., ['en', 'es'])

brands
string[]

List of specific brands this applies to

Response

Successful tool execution

success
boolean

Whether the operation succeeded

message
string

Human-readable response message

data
object

Response data (varies by tool)

I