Skip to content
SynupAPI
Get an API key
POSTapi.synup.com/api/v4/social-post-ideas/update-extended-brand-config

Update extended brand config

Creates or updates the extended generation config for a social profile — brand tone, target customers, contact/address, brand colors and logos, and the services/products/content-rules that ground social post-idea generation. Only the fields you send are changed. services, products, and contentRules are JSON values.

Requires an API key. Send it as Authorization: API <your-key> — see Getting started.

Parameters

Headers

NameTypeRequiredDescription
Synup-VersionstringrequiredAPI version date (YYYY-MM-DD).

Body

NameTypeRequiredDescription
socialProfileIdstringrequired
tonestringoptional
targetCustomersstringoptional
countrystringoptional
phonestringoptional
addressstringoptional
locationstringoptional
primaryColorstringoptional
secondaryColorstringoptional
logoLightstringoptional
logoDarkstringoptional
servicesobjectoptionalFree-form JSON describing services.
productsobjectoptionalFree-form JSON describing products.
contentRulesobjectoptionalFree-form JSON content rules.
additionalContextstringoptional

Request

Request
curl -X POST 'https://api.synup.com/api/v4/social-post-ideas/update-extended-brand-config' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "socialProfileId": "6f1c2a90-...",
  "tone": "playful",
  "targetCustomers": "gen-z shoppers"
}'

Responses

StatusDescription
200Successful response
401Unauthorized - Invalid or missing API key
Example response (generated from the schema)
{
  "data": {
    "updateExtendedBrandConfig": {
      "success": true,
      "error": {
        "message": "string",
        "code": "string",
        "contextInfo": [
          {
            "key": "string",
            "value": "string"
          }
        ]
      }
    }
  }
}

Response body

NameTypeRequiredDescription
dataobjectoptional
data.updateExtendedBrandConfigobjectoptional
data.updateExtendedBrandConfig.successbooleanoptional
data.updateExtendedBrandConfig.errorobjectoptional
data.updateExtendedBrandConfig.error.messagestringoptional
data.updateExtendedBrandConfig.error.codestringoptional
data.updateExtendedBrandConfig.error.contextInfoarray of objectoptional
data.updateExtendedBrandConfig.error.contextInfo[].keystringoptional
data.updateExtendedBrandConfig.error.contextInfo[].valuestringoptional