Documentation Index
Fetch the complete documentation index at: https://docs.ugc.inc/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
POST https://api.ugc.inc/org/name
Overview
Updates the name of your organization. Requires an org-scoped API key.
Request Body
The new name for the organization
Response
Updated organization object
Updated organization name
curl -X POST https://api.ugc.inc/org/name \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "My New Org Name"
}'
{
"ok": true,
"code": 200,
"message": "Success",
"data": {
"id": "org_123456",
"name": "My New Org Name"
}
}