POST events/search

Request Information

URI Parameters

None.

Body Parameters

EventSearchRequestDto
NameDescriptionTypeAdditional information
ProjectName

string

None.

ProjectNameSearchType

SearchType

None.

Acronym

string

None.

FreemanProjectNumber

integer

None.

TfcNumbers

Collection of integer

None.

CloseDateStart

date

None.

CloseDateEnd

date

None.

OpenDateStart

date

None.

OpenDateEnd

date

None.

IsEmsClosed

boolean

None.

IsEssClosed

boolean

None.

IsEmsLocked

boolean

None.

IsEssLocked

boolean

None.

IncludeShowtypes

Collection of ShowType

None.

ExcludeNames

Collection of string

None.

ExcludeBranches

Collection of integer

None.

PageInfo

PageInfo

None.

SortInfo

SortInfo

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectName": "sample string 1",
  "ProjectNameSearchType": 0,
  "Acronym": "sample string 2",
  "FreemanProjectNumber": 1,
  "TfcNumbers": [
    1,
    2
  ],
  "CloseDateStart": "2025-05-06T01:31:34.7600131+01:00",
  "CloseDateEnd": "2025-05-06T01:31:34.7600131+01:00",
  "OpenDateStart": "2025-05-06T01:31:34.7600131+01:00",
  "OpenDateEnd": "2025-05-06T01:31:34.7600131+01:00",
  "IsEmsClosed": true,
  "IsEssClosed": true,
  "IsEmsLocked": true,
  "IsEssLocked": true,
  "IncludeShowtypes": [
    0,
    0
  ],
  "ExcludeNames": [
    "sample string 1",
    "sample string 2"
  ],
  "ExcludeBranches": [
    1,
    1
  ],
  "PageInfo": {
    "CurrentPage": 1,
    "ItemsPerPage": 2,
    "TotalItems": 3,
    "TotalPages": 2
  },
  "SortInfo": {
    "SortColumn": "sample string 1",
    "Reverse": true
  }
}

Response Information

Resource Description

EventSearchResponseDto
NameDescriptionTypeAdditional information
events

Collection of EventHeaderDto

None.

PageInfo

PageInfo

None.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "events": [
    {
      "Id": 1,
      "Name": "sample string 2",
      "Acronym": "sample string 3",
      "City": "sample string 4",
      "OpenDate": "2025-05-06T01:31:34.775651+01:00",
      "CloseDate": "2025-05-06T01:31:34.775651+01:00",
      "FreemanShowNumber": 1,
      "BranchName": "sample string 7",
      "ShowType": 0,
      "TimeZone": "sample string 8",
      "IsEmsLocked": true,
      "IsEmsClosed": true,
      "IsShowClosed": true,
      "IsShowLocked": true,
      "DefaultFacility": "sample string 9",
      "DefaultLocation": "sample string 10",
      "TFCNumber": 11,
      "AccountName": "sample string 12",
      "PreviousSFDCName": "sample string 13",
      "SfdcProjectId": "sample string 14",
      "LineOfBusiness": "sample string 15",
      "IsArchived": true
    },
    {
      "Id": 1,
      "Name": "sample string 2",
      "Acronym": "sample string 3",
      "City": "sample string 4",
      "OpenDate": "2025-05-06T01:31:34.775651+01:00",
      "CloseDate": "2025-05-06T01:31:34.775651+01:00",
      "FreemanShowNumber": 1,
      "BranchName": "sample string 7",
      "ShowType": 0,
      "TimeZone": "sample string 8",
      "IsEmsLocked": true,
      "IsEmsClosed": true,
      "IsShowClosed": true,
      "IsShowLocked": true,
      "DefaultFacility": "sample string 9",
      "DefaultLocation": "sample string 10",
      "TFCNumber": 11,
      "AccountName": "sample string 12",
      "PreviousSFDCName": "sample string 13",
      "SfdcProjectId": "sample string 14",
      "LineOfBusiness": "sample string 15",
      "IsArchived": true
    }
  ],
  "PageInfo": {
    "CurrentPage": 1,
    "ItemsPerPage": 2,
    "TotalItems": 3,
    "TotalPages": 2
  }
}