Set Account Name

Update the display name for an account.

PATCH https://api.sonorancms.com/v2/community/accounts/00000000-0000-0000-0000-000000000000/name

Rate limit: 22 requests per minute

Authenticated v2 endpoints are rate limited per credential rather than per IP address.

Update the display name for an account.

Route Parameters

| Name | Type | Required | Description |

| --- | --- | --- | --- |

| accountId | string (uuid) | Yes | Target accountId. |

Request Body

| Name | Type | Required | Description |

| --- | --- | --- | --- |

| newName | string | Yes | See example request for the shape. |

Example Request

local Sonoran = require("sonoran")

local sonoran = Sonoran.createClient({
  product = Sonoran.productEnums.CMS,
  apiKey = "YOUR_API_KEY",
  communityId = "YOUR_COMMUNITY_ID",
  defaultServerId = 1,
  timeoutMs = 30000,
})

local accountId = "00000000-0000-0000-0000-000000000000"
local payload = {
  ["newName"] = "Example Account"
}

local response = sonoran.cms:setAccountNameV2(accountId, payload)

if response.success then
  print(response.data)
else
  print(response.reason)
end

Response

The data value is a confirmation string, not an account object. The account update still happens in the background through the service layer.

Last updated

Was this helpful?