identities
Create Identity
Create an identity to group multiple API keys under a single entity. Identities enable shared rate limits and metadata across all associated keys.
Perfect for users with multiple devices, organizations with multiple API keys, or when you need unified rate limiting across different services.
Important Requires identity.*.create_identity permission
post/v2/identities.createIdentity
Request body
Example request
{
"externalId": "user_123",
"ratelimits": [
{
"name": "api"
}
]
}Response
Example response
{
"meta": {
"requestId": "req_123"
}
}