v1

latestOpenAPI 3.1.02026-07-136388308.2 KB
Profile Management

List all users

This endpoint will retrieve the details of all Fire users on your acount.You will need to enable PERM_BUSINESS_GET_USERS to use this endpoint.

get/v1/users

Response

List of all Users.

idinteger

The User ID for this User

emailAddressstring

email address for user

firstNamestring

User first name

lastNamestring

User second name

mobileNumberstring

User mobile number

role'ADMIN' | 'FULL_USER' | 'PAYMENT_ONLY_USER' | 'PAYEE_MANAGEMENT' | 'READ_ONLY' | 'CARD_ONLY'

User role

status'LIVE' | 'CLOSED' | 'FROZEN' | 'INVITE_SENT' | 'SMS_CODE_SENT'

Status of user

lastloginstring

Timestamp on when user last logged in.

userCvlstring

Users Cvl type ID (shows up when status is LIVE)

Example response

[
  {
    "id": 14059,
    "emailAddress": "user@example.com",
    "firstName": "Colm",
    "lastName": "User",
    "mobileNumber": "+353871234567",
    "lastlogin": "2012-01-20T11:21:35.000Z",
    "userCvl": "FULL",
    "mobileApplicationDetails": {
      "clientID": "EBB10F29-A653-4DBA-9C8C-BA79F72F78B0",
      "deviceOSVersion": "14.4"
    }
  }
]