Account User

The User object represents an individual user in the Marketplace platform. This object contains the following properties:

Field
Type
Description

id

string

The primary account user identifier.

Example: AUSR-5709-0422-8243

href

string

Relative reference to the object in the API.

Example: /v1/accounts/account-users/AUSR-5709-0422-8243

user

Reference to the User object.

account

{
  "id": "ACC-1671-0642",
  "icon": null,
  "name": "You Are a Test Account"
}

invitation

Invitation.Status

Status of the invitation.

Possible values: Invited, Active, or Invitation Expired.

Example:

{
  "url": "https://client.softwareone.com/accept-invite?code=invitationCode",
  "status": "Invited"
}

groups

List of user groups.

Example:

[
  {
    "id": "UGR-8447-7590",
    "name": "test2",
    "description": "test2",
    "logo": "",
    "isDefault": false
  }
]

Example

{
    "$meta": {
        "pagination": {
            "offset": 0,
            "limit": 10,
            "total": 1
        },
        "omitted": [
            "audit"
        ]
    },
    "data": [
        {
            "id": "AUSR-4134-7183-7330",
            "user": {
                "id": "USR-6375-2499",
                "email": "[email protected]",
                "firstName": "test",
                "lastName": "test"
            },
            "groups": [
                {
                    "id": "UGR-8447-7590",
                    "name": "test2",
                    "description": "test2",
                    "logo": "",
                    "isDefault": false
                }
            ],
            "account": {
                "id": "ACC-1671-0642",
                "icon": null,
                "name": "You Are a Test Account"
            },
            "invitation": {
                "code": "TEST",
                "status": "Invited"
            }
        }
    ]
}

Last updated

Was this helpful?