Skip to main content
PATCH
/
v1
/
auth
/
me
Update profile
curl --request PATCH \
  --url https://api.clipping.cc/v1/auth/me \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "email": "<string>",
  "current_password": "<string>",
  "new_password": "<string>"
}
'
{
  "user": {
    "user_id": "<string>",
    "name": "<string>",
    "email": "<string>",
    "role": "<string>"
  },
  "token": "<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_…

Body

application/json
name
string
email
string
current_password
string

Required to change email or password.

new_password
string
Minimum string length: 8

Response

Updated user (token present when re-issued).

user
object
token
string