POST api/EventPaymentOption/CRUD
Add/Update/Delete EventPaymentOption
Request Information
URI Parameters
None.
Body Parameters
String Array of EventPaymentOptions And Information(Mandatory)
Collection of EventPaymentOptionInfoName | Description | Type | Additional information |
---|---|---|---|
EventPaymentOptionId | integer |
None. |
|
PaymentAccountId | integer |
None. |
|
Comments | string |
None. |
|
EventId | integer |
None. |
|
IsActive | boolean |
None. |
|
Deleted | integer |
None. |
|
CreatedBy | integer |
None. |
|
LastModifiedBy | integer |
None. |
|
LastUpdatedDateTime | date |
None. |
Request Formats
application/json, text/json
Sample:
[ { "EventPaymentOptionId": 1, "PaymentAccountId": 1, "Comments": "sample string 2", "EventId": 3, "IsActive": true, "Deleted": 1, "CreatedBy": 1, "LastModifiedBy": 1, "LastUpdatedDateTime": "2025-07-18T15:51:56.5283331+00:00" }, { "EventPaymentOptionId": 1, "PaymentAccountId": 1, "Comments": "sample string 2", "EventId": 3, "IsActive": true, "Deleted": 1, "CreatedBy": 1, "LastModifiedBy": 1, "LastUpdatedDateTime": "2025-07-18T15:51:56.5283331+00:00" } ]
application/xml, text/xml
Sample:
<ArrayOfEventPaymentOptionInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1"> <EventPaymentOptionInfo> <Comments>sample string 2</Comments> <CreatedBy>1</CreatedBy> <Deleted>1</Deleted> <EventId>3</EventId> <EventPaymentOptionId>1</EventPaymentOptionId> <IsActive>true</IsActive> <LastModifiedBy>1</LastModifiedBy> <LastUpdatedDateTime>2025-07-18T15:51:56.5283331+00:00</LastUpdatedDateTime> <PaymentAccountId>1</PaymentAccountId> </EventPaymentOptionInfo> <EventPaymentOptionInfo> <Comments>sample string 2</Comments> <CreatedBy>1</CreatedBy> <Deleted>1</Deleted> <EventId>3</EventId> <EventPaymentOptionId>1</EventPaymentOptionId> <IsActive>true</IsActive> <LastModifiedBy>1</LastModifiedBy> <LastUpdatedDateTime>2025-07-18T15:51:56.5283331+00:00</LastUpdatedDateTime> <PaymentAccountId>1</PaymentAccountId> </EventPaymentOptionInfo> </ArrayOfEventPaymentOptionInfo>
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>