Skip to main content

Get roles by wallet id

GET 

/v1/wallets/:wallet_id/roles-with-permissions

Get roles by wallet id

This endpoint retrieves roles along with their associated permissions for a given wallet ID. It supports filtering by role name, sorting by creation date or name, and pagination. A successful request returns a list of roles with details including limits and active users status. Errors include wallet not found and internal server errors.

Request

Path Parameters

    wallet_id uuidrequired

    Wallet id

Query Parameters

    search_by string

    Search by

    order_by string

    Order by

    sort_by string

    Sort by

    page int32

    Page

    page_size int32

    Page size

Responses

Roles found

Schema
  • Array [
  • createdAt date-timerequired
    dailyLimit int32nullable
    hasActiveUsers booleanrequired
    id uuidrequired
    monthlyLimit int32nullable
    name stringrequired
    permissions string[]required
    singleTxLimit int32nullable
    walletId uuidrequired
  • ]
Loading...