Skip to content

/custom-data/metaobjects/{type}/entries/{handle}

PUT
/custom-data/metaobjects/{type}/entries/{handle}
curl --request PUT \
--url https://your-store.myciqra.com/custom-data/metaobjects/example/entries/example \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "fields": { "additionalProperty": "example" }, "publishedAt": "2026-04-15T12:00:00Z", "seoDescription": "example", "seoTitle": "example", "translations": "example" }'

Required scope: write_metaobjects — an installation token without it receives 403.

type
required
string
handle
required
string
Media typeapplication/json
object
fields
required
object
key
additional properties
publishedAt
null | string format: date-time
seoDescription
null | string
seoTitle
null | string
translations
null | object
Examplegenerated
{
"fields": {
"additionalProperty": "example"
},
"publishedAt": "2026-04-15T12:00:00Z",
"seoDescription": "example",
"seoTitle": "example",
"translations": "example"
}

OK

Media typeapplication/json
object
handle
required
string
id
required
string format: uuid
publishedAt
required
null | string format: date-time
seoDescription
required
null | string
seoTitle
required
null | string
Examplegenerated
{
"handle": "example",
"id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0",
"publishedAt": "2026-04-15T12:00:00Z",
"seoDescription": "example",
"seoTitle": "example"
}

Bad Request

Media typeapplication/problem+json
object
detail
null | string
errors
object
key
additional properties
Array<string>
instance
null | string
status
null | integer | string format: int32
/^-?(?:0|[1-9]\d*)$/
title
null | string
type
null | string
Examplegenerated
{
"detail": "example",
"errors": {
"additionalProperty": [
"example"
]
},
"instance": "example",
"status": 1,
"title": "example",
"type": "example"
}

Not Found