User Attributes

GetUserAttribute

GET {{domain}}/api/1/Attribute/user

Gets the list of available attributes for the user entity

Query Parameters

Name
Type
Description

Keyword

string

Keyword used in searching

pageSize

integer

Page size for pagination. Default value is set as 10

pageNumber

integer

Page number for pagination. Default value is set as 1

{
  "message": "200",
  "data": [
    {
      "id": 1,
      "attributeName": "FirstName",
      "entityName": "User",
      "total": 8
    },
    {
      "id": 2,
      "attributeName": "LastName",
      "entityName": "User",
      "total": 8
    }
  ]
}

CreateUserAttribute

POST {{domain}}/api/1/Attribute/user

Creates a new attribute for user entity

Request Body

Name
Type
Description

object

{ "attributeName": "string", "entityName": "string", "typeName": "string" }

Last updated

Was this helpful?