GET api/consumer/v1/eventCategories/search/{entityType}/{entityId}

Get all Event Categories by entity type and entity ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
entityId

Entity ID

integer

Required

entityType

Entity type of element

VisibilityEntityType

Required

Body Parameters

None

Response Information

Resource Description

List of Event Categories

Collection of EventCategoryDto
NameDescriptionTypeAdditional information
Icon

The icon of the element

string

None

Color

The color of the element

string

None

EntityId

The target's entity identifier

integer

None

EntityFullname

Entity full name of element

string

None

Code

The short code of the element

string

None

Description

The description of the element

string

None

IsActive

True if the element is active, false otherwise

boolean

None

Permissions

Permissions

PermissionDto

None

CreationDate

Creation

date

None

CreatedBy

The user who has made the insert

UserMinDto

None

LastUpdateDate

Date of the last update

date

None

LastUpdatedBy

The user who has made the last update

UserMinDto

None

Id

Unique ID

integer

None

Response Formats

application/json, text/json

Sample:
[
  {
    "Icon": "sample string 1",
    "Color": "sample string 2",
    "EntityId": 3,
    "EntityFullname": "sample string 4",
    "Code": "sample string 5",
    "Description": "sample string 6",
    "IsActive": true,
    "Permissions": {
      "CanModify": true,
      "CanDelete": true
    },
    "CreationDate": "2024-11-01T18:58:36.0468361+01:00",
    "CreatedBy": {
      "Login": "sample string 1",
      "FullName": "sample string 2",
      "Avatar": "sample string 3",
      "Id": 4
    },
    "LastUpdateDate": "2024-11-01T18:58:36.0468361+01:00",
    "LastUpdatedBy": {
      "Login": "sample string 1",
      "FullName": "sample string 2",
      "Avatar": "sample string 3",
      "Id": 4
    },
    "Id": 8
  },
  {
    "Icon": "sample string 1",
    "Color": "sample string 2",
    "EntityId": 3,
    "EntityFullname": "sample string 4",
    "Code": "sample string 5",
    "Description": "sample string 6",
    "IsActive": true,
    "Permissions": {
      "CanModify": true,
      "CanDelete": true
    },
    "CreationDate": "2024-11-01T18:58:36.0468361+01:00",
    "CreatedBy": {
      "Login": "sample string 1",
      "FullName": "sample string 2",
      "Avatar": "sample string 3",
      "Id": 4
    },
    "LastUpdateDate": "2024-11-01T18:58:36.0468361+01:00",
    "LastUpdatedBy": {
      "Login": "sample string 1",
      "FullName": "sample string 2",
      "Avatar": "sample string 3",
      "Id": 4
    },
    "Id": 8
  }
]

application/xml, text/xml

Sample:
<ArrayOfEventCategoryDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Oryx.Web.Api.Models">
  <EventCategoryDto>
    <Id>8</Id>
    <CreatedBy>
      <Id>4</Id>
      <Avatar>sample string 3</Avatar>
      <FullName>sample string 2</FullName>
      <Login>sample string 1</Login>
    </CreatedBy>
    <CreationDate>2024-11-01T18:58:36.0468361+01:00</CreationDate>
    <LastUpdateDate>2024-11-01T18:58:36.0468361+01:00</LastUpdateDate>
    <LastUpdatedBy>
      <Id>4</Id>
      <Avatar>sample string 3</Avatar>
      <FullName>sample string 2</FullName>
      <Login>sample string 1</Login>
    </LastUpdatedBy>
    <Code>sample string 5</Code>
    <Description>sample string 6</Description>
    <IsActive>true</IsActive>
    <Permissions>
      <CanDelete>true</CanDelete>
      <CanModify>true</CanModify>
    </Permissions>
    <Color>sample string 2</Color>
    <EntityFullname>sample string 4</EntityFullname>
    <EntityId>3</EntityId>
    <Icon>sample string 1</Icon>
  </EventCategoryDto>
  <EventCategoryDto>
    <Id>8</Id>
    <CreatedBy>
      <Id>4</Id>
      <Avatar>sample string 3</Avatar>
      <FullName>sample string 2</FullName>
      <Login>sample string 1</Login>
    </CreatedBy>
    <CreationDate>2024-11-01T18:58:36.0468361+01:00</CreationDate>
    <LastUpdateDate>2024-11-01T18:58:36.0468361+01:00</LastUpdateDate>
    <LastUpdatedBy>
      <Id>4</Id>
      <Avatar>sample string 3</Avatar>
      <FullName>sample string 2</FullName>
      <Login>sample string 1</Login>
    </LastUpdatedBy>
    <Code>sample string 5</Code>
    <Description>sample string 6</Description>
    <IsActive>true</IsActive>
    <Permissions>
      <CanDelete>true</CanDelete>
      <CanModify>true</CanModify>
    </Permissions>
    <Color>sample string 2</Color>
    <EntityFullname>sample string 4</EntityFullname>
    <EntityId>3</EntityId>
    <Icon>sample string 1</Icon>
  </EventCategoryDto>
</ArrayOfEventCategoryDto>