Get Account Identifiers

Retrieve the identifiers stored for an account.

GET https://api.sonorancms.com/v2/community/accounts/00000000-0000-0000-0000-000000000000/identifiers

Rate limit: 22 requests per minute

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

Retrieve the identifiers stored for an account.

Route Parameters

| Name | Type | Required | Description |

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

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

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 response = sonoran.cms:getAccountIdentifiersV2(accountId)

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

Response

The data array contains the full security identifier entities for the account, including verification, metadata, and optional flag information.

Last updated

Was this helpful?