POST api/EventPrelimEntryStatus/CRUD
Add/Update/Delete Currency
Request Information
URI Parameters
None.
Body Parameters
String Array of EventPrlimEntryStatus And Information(Mandatory)
Collection of EventPrelimEntryStatusInfo| Name | Description | Type | Additional information | 
|---|---|---|---|
| EventPrelimEntryStatusId | integer | None. | |
| StatusName | string | None. | |
| CreatedDateTime | date | None. | |
| LastUpdatedDateTime | date | None. | |
| CreatedBy | integer | None. | |
| LastModifiedBy | integer | None. | |
| IsActive | boolean | None. | |
| IsDeleted | integer | None. | 
Request Formats
application/json, text/json
            Sample:
        
[
  {
    "EventPrelimEntryStatusId": 1,
    "StatusName": "sample string 2",
    "CreatedDateTime": "2025-10-31T07:04:07.6491209+00:00",
    "LastUpdatedDateTime": "2025-10-31T07:04:07.6491209+00:00",
    "CreatedBy": 3,
    "LastModifiedBy": 4,
    "IsActive": true,
    "IsDeleted": 1
  },
  {
    "EventPrelimEntryStatusId": 1,
    "StatusName": "sample string 2",
    "CreatedDateTime": "2025-10-31T07:04:07.6491209+00:00",
    "LastUpdatedDateTime": "2025-10-31T07:04:07.6491209+00:00",
    "CreatedBy": 3,
    "LastModifiedBy": 4,
    "IsActive": true,
    "IsDeleted": 1
  }
]
        application/xml, text/xml
            Sample:
        
<ArrayOfEventPrelimEntryStatusInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <EventPrelimEntryStatusInfo>
    <CreatedBy>3</CreatedBy>
    <CreatedDateTime>2025-10-31T07:04:07.6491209+00:00</CreatedDateTime>
    <EventPrelimEntryStatusId>1</EventPrelimEntryStatusId>
    <IsActive>true</IsActive>
    <IsDeleted>1</IsDeleted>
    <LastModifiedBy>4</LastModifiedBy>
    <LastUpdatedDateTime>2025-10-31T07:04:07.6491209+00:00</LastUpdatedDateTime>
    <StatusName>sample string 2</StatusName>
  </EventPrelimEntryStatusInfo>
  <EventPrelimEntryStatusInfo>
    <CreatedBy>3</CreatedBy>
    <CreatedDateTime>2025-10-31T07:04:07.6491209+00:00</CreatedDateTime>
    <EventPrelimEntryStatusId>1</EventPrelimEntryStatusId>
    <IsActive>true</IsActive>
    <IsDeleted>1</IsDeleted>
    <LastModifiedBy>4</LastModifiedBy>
    <LastUpdatedDateTime>2025-10-31T07:04:07.6491209+00:00</LastUpdatedDateTime>
    <StatusName>sample string 2</StatusName>
  </EventPrelimEntryStatusInfo>
</ArrayOfEventPrelimEntryStatusInfo>
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
            Sample:
        1
application/xml, text/xml
            Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>