Auth0 · Example Payload

Auth0 User Create Example

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Auth0 User Create Example is an example object payload from Auth0, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://your-tenant.auth0.com/api/v2/users",
    "headers": {
      "Authorization": "Bearer {AUTH0_MGMT_TOKEN}",
      "Content-Type": "application/json"
    },
    "body": {
      "email": "ada@example.com",
      "email_verified": false,
      "password": "Str0ng!Passw0rd",
      "connection": "Username-Password-Authentication",
      "given_name": "Ada",
      "family_name": "Lovelace",
      "user_metadata": {
        "marketing_opt_in": false
      },
      "app_metadata": {
        "plan": "free"
      }
    }
  },
  "response": {
    "user_id": "auth0|66b1f0c7c8e3d29a40000001",
    "email": "ada@example.com",
    "email_verified": false,
    "created_at": "2026-05-22T12:00:00.000Z",
    "updated_at": "2026-05-22T12:00:00.000Z",
    "given_name": "Ada",
    "family_name": "Lovelace",
    "name": "Ada Lovelace",
    "identities": [
      {
        "user_id": "66b1f0c7c8e3d29a40000001",
        "provider": "auth0",
        "connection": "Username-Password-Authentication",
        "isSocial": false
      }
    ]
  }
}