Skip to main content
PATCH
/
v1
/
collections
/
{collection_id}
Update collection
curl --request PATCH \
  --url https://api.clipping.cc/v1/collections/{collection_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "price_coins": 1,
  "expose_reporters": true,
  "expose_channels": true,
  "expose_contents": true,
  "expose_documents": true
}
'
{
  "collection": {
    "collection_id": "<string>",
    "name": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.clipping.cc/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer ck_live_…

Path Parameters

collection_id
string
required

Body

application/json
name
string
description
string | null
visibility
enum<string>
Available options:
private,
public
language
enum<string>
Available options:
pt,
en
price_coins
number

0 = free; >0 makes the collection paid.

Required range: x >= 0
billing_period
enum<string> | null

Required when price_coins > 0.

Available options:
once,
monthly,
null
expose_reporters
boolean
expose_channels
boolean
expose_contents
boolean
expose_documents
boolean

Response

Updated.

collection
object