Skip to main content
POST
/
v1
/
users
/
fetch
Fetch Users
curl --request POST \
  --url https://dev.api.mufi.app/v1/users/fetch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "limit": 10,
  "offset": 0
}'
{
  "users": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "firstName": "<string>",
      "lastName": "<string>",
      "email": "jsmith@example.com",
      "referenceId": "<string>",
      "isActivated": true,
      "activatedOn": "2023-11-07T05:31:56Z",
      "wallets": [
        {
          "type": "Polkadot",
          "address": "<string>",
          "custody": "user-controlled"
        }
      ]
    }
  ],
  "total": 123
}

Authorizations

Authorization
string
header
required

A JWT Access Token obtained from Google Cloud.

Body

application/json

User and pagination parameters. limit defaults to 10 and has a max limit of 1000.

limit
number
default:10
Required range: 1 <= x <= 1000
offset
number
default:0

Response

Returns a list of users associated with the project and the total number of users available for pagination. Each user object includes details such as id, firstName, lastName, email, referenceId, isActivated, and activatedOn.

users
object[]
required
total
number
required