Skip to main content
PATCH
/
api
/
marketplace
/
{id}
Update publish settings for a marketplace item
curl --request PATCH \
  --url https://your-instance.example.com/api/marketplace/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "shareType": "reference",
  "isContentVisible": true,
  "allowEditableReferences": true
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json
shareType
enum<string>
Available options:
reference,
copy
isContentVisible
boolean
allowEditableReferences
boolean

Response

Publish settings updated

Generic response envelope. Endpoint-specific fields are intentionally open.