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

Authorizations

x-api-key
string
header
required

The API Key you were given in the developer portal. API keys are associated with your organization's project application and can have read or write permissions and an optional expiration date.

Body

application/json
User and pagination parameters. limit defaults to 10 and has a max limit of 1000.
limit
number
default:10
Required range: x <= 1000
offset
number
default:0

Response

200
application/json
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