Update brand SEO settings
PUT
/v1/brands/{brandId}/seo
const url = 'https://kynectlocal-production.up.railway.app/v1/v1/brands/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/seo';const options = {method: 'PUT', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url https://kynectlocal-production.up.railway.app/v1/v1/brands/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/seo \ --header 'Authorization: Bearer <token>'Authorizations
Section titled βAuthorizations βParameters
Section titled β Parameters βPath Parameters
Section titled βPath Parameters β brandId
required
string format: uuid
Brand identifier
Responses
Section titled β Responses βSuccess
Media type application/json
object
data
required
object
seo
required
object
id
required
string format: uuid
name
required
string
seoOrgName
required
string | null
seoOrgAlternateName
required
string | null
seoBusinessType
required
string | null
seoTitleSeparator
required
string | null
seoTitleTemplatePage
required
string | null
seoTitleTemplateLocation
required
string | null
seoTitleTemplatePost
required
string | null
seoDescTemplatePage
required
string | null
seoDescTemplateLocation
required
string | null
seoDescTemplatePost
required
string | null
seoOgDefaultImage
required
string | null
seoOgSiteName
required
string | null
seoTwitterCardType
required
string | null
seoFbVerification
required
string | null
seoGoogleVerification
required
string | null
seoBingVerification
required
string | null
seoRobotsTxt
required
string | null
seoNoindexLocations
required
boolean
seoCanonicalEnabled
required
boolean
seoSitemapEnabled
required
boolean
seoLlmtxtEnabled
required
boolean
seoLockTitle
required
boolean
seoLockDescription
required
boolean
seoLockOgImage
required
boolean
seoLockRobots
required
boolean
Example generated
{ "data": { "seo": { "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "name": "example", "seoOrgName": "example", "seoOrgAlternateName": "example", "seoBusinessType": "example", "seoTitleSeparator": "example", "seoTitleTemplatePage": "example", "seoTitleTemplateLocation": "example", "seoTitleTemplatePost": "example", "seoDescTemplatePage": "example", "seoDescTemplateLocation": "example", "seoDescTemplatePost": "example", "seoOgDefaultImage": "example", "seoOgSiteName": "example", "seoTwitterCardType": "example", "seoFbVerification": "example", "seoGoogleVerification": "example", "seoBingVerification": "example", "seoRobotsTxt": "example", "seoNoindexLocations": true, "seoCanonicalEnabled": true, "seoSitemapEnabled": true, "seoLlmtxtEnabled": true, "seoLockTitle": true, "seoLockDescription": true, "seoLockOgImage": true, "seoLockRobots": true } }}Validation error
Media type application/json
object
error
required
Error envelope
object
code
required
Machine-readable error code
string
message
required
Human-readable error description
string
details
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Unauthenticated
Media type application/json
object
error
required
Error envelope
object
code
required
Machine-readable error code
string
message
required
Human-readable error description
string
details
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Forbidden
Media type application/json
object
error
required
Error envelope
object
code
required
Machine-readable error code
string
message
required
Human-readable error description
string
details
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Not found
Media type application/json
object
error
required
Error envelope
object
code
required
Machine-readable error code
string
message
required
Human-readable error description
string
details
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}Unprocessable
Media type application/json
object
error
required
Error envelope
object
code
required
Machine-readable error code
string
message
required
Human-readable error description
string
details
Additional context, e.g. validation field errors
Example generated
{ "error": { "code": "example", "message": "example", "details": "example" }}