For the complete documentation index, see llms.txt. This page is also available as Markdown.

Account User

This object contains the following attributes:

Field
Type
Description

id

string, core

(Read-only) The primary identifier for the account user.

user

object, core

Represents the user object.

account

object, core

Represents the account object.

invitation

string

(Read-only) The status of the invitation. Allowed values:

  • Invited

  • Active

  • InvitationExpired

groups

object

Represents the group object containing a list of groups.

Example

ACCOUNT USER OBJECT
{
    "$meta": {
        "pagination": {
            "offset": 0,
            "limit": 10,
            "total": 1
        },
        "omitted": [
            "audit"
        ]
    },
    "data": [
        {
            "id": "AUSR-4134-7183-7330",
            "user": {
                "id": "USR-6375-2499",
                "email": "janedoe@example.com",
                "firstName": "jane",
                "lastName": "doe"
            },
            "groups": [
                {
                    "id": "UGR-8447-7590",
                    "name": "Reto",
                    "description": "Mayer",
                    "logo": "",
                    "isDefault": false
                }
            ],
            "account": {
                "id": "ACC-1671-0642",
                "icon": null,
                "name": "This is my account."
            },
            "invitation": {
                "code": "TEST",
                "status": "Invited"
            }
        }
    ]
}

Last updated

Was this helpful?