GET api/UserEventDetails/GetAll?userID={userID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of UserEventModel
NameDescriptionTypeAdditional information
ID

integer

None.

UserID

integer

None.

Title

string

None.

EventColor

string

None.

Description

string

None.

StartDate

date

None.

StartTime

string

None.

EndDate

date

None.

EndTime

string

None.

IsPublic

boolean

None.

IsDeleted

boolean

None.

CreatedDate

date

None.

UpdatedDate

date

None.

CreatedBy

integer

None.

UpdatedBy

integer

None.

UserName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "UserID": 1,
    "Title": "sample string 2",
    "EventColor": "sample string 3",
    "Description": "sample string 4",
    "StartDate": "2026-06-30T14:17:16.1263204+01:00",
    "StartTime": "sample string 5",
    "EndDate": "2026-06-30T14:17:16.1263204+01:00",
    "EndTime": "sample string 6",
    "IsPublic": true,
    "IsDeleted": true,
    "CreatedDate": "2026-06-30T14:17:16.1263204+01:00",
    "UpdatedDate": "2026-06-30T14:17:16.1263204+01:00",
    "CreatedBy": 1,
    "UpdatedBy": 1,
    "UserName": "sample string 7"
  },
  {
    "ID": 1,
    "UserID": 1,
    "Title": "sample string 2",
    "EventColor": "sample string 3",
    "Description": "sample string 4",
    "StartDate": "2026-06-30T14:17:16.1263204+01:00",
    "StartTime": "sample string 5",
    "EndDate": "2026-06-30T14:17:16.1263204+01:00",
    "EndTime": "sample string 6",
    "IsPublic": true,
    "IsDeleted": true,
    "CreatedDate": "2026-06-30T14:17:16.1263204+01:00",
    "UpdatedDate": "2026-06-30T14:17:16.1263204+01:00",
    "CreatedBy": 1,
    "UpdatedBy": 1,
    "UserName": "sample string 7"
  }
]

text/xml

Sample:
<ArrayOfUserEventModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Models">
  <UserEventModel>
    <CreatedBy>1</CreatedBy>
    <CreatedDate>2026-06-30T14:17:16.1263204+01:00</CreatedDate>
    <Description>sample string 4</Description>
    <EndDate>2026-06-30T14:17:16.1263204+01:00</EndDate>
    <EndTime>sample string 6</EndTime>
    <EventColor>sample string 3</EventColor>
    <ID>1</ID>
    <IsDeleted>true</IsDeleted>
    <IsPublic>true</IsPublic>
    <StartDate>2026-06-30T14:17:16.1263204+01:00</StartDate>
    <StartTime>sample string 5</StartTime>
    <Title>sample string 2</Title>
    <UpdatedBy>1</UpdatedBy>
    <UpdatedDate>2026-06-30T14:17:16.1263204+01:00</UpdatedDate>
    <UserID>1</UserID>
    <UserName>sample string 7</UserName>
  </UserEventModel>
  <UserEventModel>
    <CreatedBy>1</CreatedBy>
    <CreatedDate>2026-06-30T14:17:16.1263204+01:00</CreatedDate>
    <Description>sample string 4</Description>
    <EndDate>2026-06-30T14:17:16.1263204+01:00</EndDate>
    <EndTime>sample string 6</EndTime>
    <EventColor>sample string 3</EventColor>
    <ID>1</ID>
    <IsDeleted>true</IsDeleted>
    <IsPublic>true</IsPublic>
    <StartDate>2026-06-30T14:17:16.1263204+01:00</StartDate>
    <StartTime>sample string 5</StartTime>
    <Title>sample string 2</Title>
    <UpdatedBy>1</UpdatedBy>
    <UpdatedDate>2026-06-30T14:17:16.1263204+01:00</UpdatedDate>
    <UserID>1</UserID>
    <UserName>sample string 7</UserName>
  </UserEventModel>
</ArrayOfUserEventModel>